diff options
author | Samuel Holland | 2021-08-28 11:49:03 -0500 |
---|---|---|
committer | Andre Przywara | 2022-04-04 23:24:17 +0100 |
commit | 8c2bdff48392f71b18812f519635cbf2003801e5 (patch) | |
tree | 005d784b24008d268ed00071f13554057c44c5b8 /board/sunxi | |
parent | 7570c54e46a76a853a1e3f89a7a3e9960e6a511b (diff) |
sunxi: Remove non-DM MMC pin setup
This is now handled automatically by the pinctrl driver.
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'board/sunxi')
-rw-r--r-- | board/sunxi/board.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/board/sunxi/board.c b/board/sunxi/board.c index 982ec44e034..89324159d55 100644 --- a/board/sunxi/board.c +++ b/board/sunxi/board.c @@ -250,17 +250,6 @@ int board_init(void) i2c_init_board(); #endif -#ifdef CONFIG_DM_MMC - /* - * Temporary workaround for enabling MMC clocks until a sunxi DM - * pinctrl driver lands. - */ - mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT); -#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1 - mmc_pinmux_setup(CONFIG_MMC_SUNXI_SLOT_EXTRA); -#endif -#endif /* CONFIG_DM_MMC */ - eth_init_board(); return 0; |