diff options
Diffstat (limited to 'board/udoo')
-rw-r--r-- | board/udoo/neo/neo.c | 4 | ||||
-rw-r--r-- | board/udoo/udoo.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/board/udoo/neo/neo.c b/board/udoo/neo/neo.c index 5e49180c76..c6edc72440 100644 --- a/board/udoo/neo/neo.c +++ b/board/udoo/neo/neo.c @@ -292,7 +292,7 @@ static int setup_fec(int fec_id) return enable_fec_anatop_clock(fec_id, ENET_25MHZ); } -int board_eth_init(bd_t *bis) +int board_eth_init(struct bd_info *bis) { uint32_t base = IMX_FEC_BASE; struct mii_dev *bus = NULL; @@ -404,7 +404,7 @@ int board_mmc_getcd(struct mmc *mmc) return !gpio_get_value(USDHC2_CD_GPIO); } -int board_mmc_init(bd_t *bis) +int board_mmc_init(struct bd_info *bis) { imx_iomux_v3_setup_multiple_pads(usdhc2_pads, ARRAY_SIZE(usdhc2_pads)); usdhc_cfg[0].sdhc_clk = mxc_get_clock(MXC_ESDHC2_CLK); diff --git a/board/udoo/udoo.c b/board/udoo/udoo.c index 4c85d99c13..62b32ae759 100644 --- a/board/udoo/udoo.c +++ b/board/udoo/udoo.c @@ -182,7 +182,7 @@ int board_mmc_getcd(struct mmc *mmc) return 1; /* Always present */ } -int board_eth_init(bd_t *bis) +int board_eth_init(struct bd_info *bis) { uint32_t base = IMX_FEC_BASE; struct mii_dev *bus = NULL; @@ -216,7 +216,7 @@ free_bus: return ret; } -int board_mmc_init(bd_t *bis) +int board_mmc_init(struct bd_info *bis) { SETUP_IOMUX_PADS(usdhc3_pads); usdhc_cfg.sdhc_clk = mxc_get_clock(MXC_ESDHC3_CLK); |