aboutsummaryrefslogtreecommitdiff
path: root/common/board_r.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-08-01 09:47:14 -0600
committerTom Rini <trini@konsulko.com>2019-08-11 19:27:41 -0400
commit9e5616dea9db5e13ab3da1d5b414ce0bc7dc0afe (patch)
tree1aa52f3c887b29e53d7cdbb291f8ac43a8216920 /common/board_r.c
parentf3998fdc4d0871727d7be6838bac750c6323c0a8 (diff)
downloadu-boot-9e5616dea9db5e13ab3da1d5b414ce0bc7dc0afe.zip
u-boot-9e5616dea9db5e13ab3da1d5b414ce0bc7dc0afe.tar.gz
u-boot-9e5616dea9db5e13ab3da1d5b414ce0bc7dc0afe.tar.bz2
Drop PCMCIA
This is no-longer used in U-Boot and has not been converted to driver model. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/board_r.c')
-rw-r--r--common/board_r.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/common/board_r.c b/common/board_r.c
index 1dabf5a..b7f68bb 100644
--- a/common/board_r.c
+++ b/common/board_r.c
@@ -583,15 +583,6 @@ static int initr_post(void)
}
#endif
-#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_IDE)
-static int initr_pcmcia(void)
-{
- puts("PCMCIA:");
- pcmcia_init();
- return 0;
-}
-#endif
-
#if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
static int initr_ide(void)
{
@@ -820,9 +811,6 @@ static init_fnc_t init_sequence_r[] = {
#ifdef CONFIG_POST
initr_post,
#endif
-#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_IDE)
- initr_pcmcia,
-#endif
#if defined(CONFIG_IDE) && !defined(CONFIG_BLK)
initr_ide,
#endif