diff options
author | Thomas Fitzsimmons <fitzsim@fitzsim.org> | 2019-05-17 08:17:07 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-28 13:58:06 -0400 |
commit | 77934fdedfdd8a87d3b96c45b7bd540be60445d6 (patch) | |
tree | 1c9ed21bdf329e6eb0827dcfef9738f2c2abc1ee /include | |
parent | d7cc0e4d7999b0b696ec4047420abf34a821ba29 (diff) |
dm: arm: bcmstb: Enable driver model MMC support
For bcm7445 and bcm7260, this patch enables CONFIG_DM_MMC and updates
the bcmstb SDHCI driver to use the new driver model. This allows
removal of SDHCI configuration handling from bcmstb.c, and eliminates
a board removal compile warning.
Signed-off-by: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/bcm7260.h | 1 | ||||
-rw-r--r-- | include/configs/bcm7445.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/include/configs/bcm7260.h b/include/configs/bcm7260.h index a2d7f614ce1..967bde54c86 100644 --- a/include/configs/bcm7260.h +++ b/include/configs/bcm7260.h @@ -19,7 +19,6 @@ #include "bcmstb.h" -#define BCMSTB_SDHCI_BASE 0xf0200300 #define BCMSTB_TIMER_LOW 0xf0412008 #define BCMSTB_TIMER_HIGH 0xf041200c #define BCMSTB_TIMER_FREQUENCY 0xf0412020 diff --git a/include/configs/bcm7445.h b/include/configs/bcm7445.h index 6984edde18f..3ff4677f0af 100644 --- a/include/configs/bcm7445.h +++ b/include/configs/bcm7445.h @@ -19,7 +19,6 @@ #include "bcmstb.h" -#define BCMSTB_SDHCI_BASE 0xf03e0200 #define BCMSTB_TIMER_LOW 0xf0412008 #define BCMSTB_TIMER_HIGH 0xf041200c #define BCMSTB_TIMER_FREQUENCY 0xf0412020 |