diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-10 10:27:39 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-10 10:27:39 -0500 |
commit | 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d (patch) | |
tree | b832da8d622e58236d32cf2a796ebd45ab2b8215 /cpu/mpc5xxx/ide.c | |
parent | 079a136c3588814784561d6e4856970ee82d6e2a (diff) | |
download | u-boot-imx-068b60a0eb7e73b243ca55399f2a7df76e2c3f3d.zip u-boot-imx-068b60a0eb7e73b243ca55399f2a7df76e2c3f3d.tar.gz u-boot-imx-068b60a0eb7e73b243ca55399f2a7df76e2c3f3d.tar.bz2 |
cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'cpu/mpc5xxx/ide.c')
-rw-r--r-- | cpu/mpc5xxx/ide.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc5xxx/ide.c b/cpu/mpc5xxx/ide.c index 29b99f6..087ddac 100644 --- a/cpu/mpc5xxx/ide.c +++ b/cpu/mpc5xxx/ide.c @@ -24,7 +24,7 @@ */ #include <common.h> -#ifdef CFG_CMD_IDE +#if defined(CONFIG_CMD_IDE) #include <mpc5xxx.h> DECLARE_GLOBAL_DATA_PTR; @@ -85,4 +85,4 @@ int ide_preinit (void) return (0); } -#endif /* CFG_CMD_IDE */ +#endif |