diff options
author | Stefan Agner | 2016-10-05 15:27:08 -0700 |
---|---|---|
committer | Stefano Babic | 2016-10-07 12:26:15 +0200 |
commit | aa723b8dbfbd61f12d400650f34d47ac1db04820 (patch) | |
tree | 613cd90aaad0dbb035df789fc4f5bc1e9b49f1c6 /board/toradex | |
parent | 7443a1ddb19c047e5331962545ef5cbc34b5f60a (diff) |
colibri_imx7: remove legancy UART platform data
We now use device tree to provide SoC data to the UART driver, there
is no need for the legancy UART platform data.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'board/toradex')
-rw-r--r-- | board/toradex/colibri_imx7/colibri_imx7.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/board/toradex/colibri_imx7/colibri_imx7.c b/board/toradex/colibri_imx7/colibri_imx7.c index ddb308548e2..bd7d5bc8584 100644 --- a/board/toradex/colibri_imx7/colibri_imx7.c +++ b/board/toradex/colibri_imx7/colibri_imx7.c @@ -368,13 +368,3 @@ int board_ehci_hcd_init(int port) return 0; } #endif - -static struct mxc_serial_platdata mxc_serial_plat = { - .reg = (struct mxc_uart *)UART1_IPS_BASE_ADDR, - .use_dte = true, -}; - -U_BOOT_DEVICE(mxc_serial) = { - .name = "serial_mxc", - .platdata = &mxc_serial_plat, -}; |