summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorAdam Ford <aford173@gmail.com>2018-10-08 01:47:50 +0300
committerTom Rini <trini@konsulko.com>2018-10-22 16:18:49 +0300
commit6482095de6d0a21e150fbce86ba351ce225afe03 (patch)
tree55b9ab6fb0ab730ae59a7bf298e93a329a81d8cf /board
parentc3aa8513221c9abbe8832873dde2c96b60b5bb4b (diff)
downloadu-boot-6482095de6d0a21e150fbce86ba351ce225afe03.tar.xz
ARM: omap3logic: Fix MMC name
In my haste to migrate SPL to DM, I copied the wrong name. While it really doesn't matter, I'd prefer the name to match the board, so am335x_mmc0 is now called omap3_logic_mmc0 Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'board')
-rw-r--r--board/logicpd/omap3som/omap3logic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/logicpd/omap3som/omap3logic.c b/board/logicpd/omap3som/omap3logic.c
index cd6dd72d44..c244a1f683 100644
--- a/board/logicpd/omap3som/omap3logic.c
+++ b/board/logicpd/omap3som/omap3logic.c
@@ -63,7 +63,7 @@ static const struct omap_hsmmc_plat omap3_logic_mmc0_platdata = {
.cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT,
};
-U_BOOT_DEVICE(am335x_mmc0) = {
+U_BOOT_DEVICE(omap3_logic_mmc0) = {
.name = "omap_hsmmc",
.platdata = &omap3_logic_mmc0_platdata,
};