diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-10 10:39:10 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-10 10:39:10 -0500 |
commit | 77a318545d57aefa844752465b94c7e09a3f26d0 (patch) | |
tree | 55af00384fa493e77150be599424539ecdc6a51d /board/fads | |
parent | 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d (diff) |
board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
Those always evaluated TRUE, and thus were always compiled
even when IDE really wasn't defined/wanted.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/fads')
-rw-r--r-- | board/fads/fads.c | 2 | ||||
-rw-r--r-- | board/fads/fads.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/fads/fads.c b/board/fads/fads.c index 4e3669ed97a..8f5736b4141 100644 --- a/board/fads/fads.c +++ b/board/fads/fads.c @@ -921,7 +921,7 @@ int pcmcia_init(void) return 0; } -#endif /* CFG_CMD_PCMCIA */ +#endif /* ========================================================================= */ diff --git a/board/fads/fads.h b/board/fads/fads.h index 75237818cef..c6f7ccde077 100644 --- a/board/fads/fads.h +++ b/board/fads/fads.h @@ -250,7 +250,7 @@ */ #define CFG_JFFS2_SORT_FRAGMENTS -#endif /* CFG_CMD_JFFS2 */ +#endif /*----------------------------------------------------------------------- * Cache Configuration @@ -479,7 +479,7 @@ #define CONFIG_ISO_PARTITION 1 #undef CONFIG_ATAPI -#if 0 /* does not make sense when CFG_CMD_IDE is not enabled, too */ +#if 0 /* does not make sense when CONFIG_CMD_IDE is not enabled, too */ #define CONFIG_IDE_8xx_PCCARD 1 /* Use IDE with PC Card Adapter */ #endif #undef CONFIG_IDE_8xx_DIRECT /* Direct IDE not supported */ |