diff options
author | Jon Loeliger <jdl@freescale.com> | 2007-07-10 11:07:56 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2007-07-10 11:07:56 -0500 |
commit | f40a7f3e3888b42a43674b099e5470022c8c544c (patch) | |
tree | ead9d86b7912788ebfb773d7de4882346049b01a /fs/ext2 | |
parent | 610f2e9c28a9c101e09fa1b78143cf5f00ed1593 (diff) | |
download | u-boot-f40a7f3e3888b42a43674b099e5470022c8c544c.tar.gz u-boot-f40a7f3e3888b42a43674b099e5470022c8c544c.tar.xz u-boot-f40a7f3e3888b42a43674b099e5470022c8c544c.zip |
fs/: 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 'fs/ext2')
-rw-r--r-- | fs/ext2/dev.c | 2 | ||||
-rw-r--r-- | fs/ext2/ext2fs.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext2/dev.c b/fs/ext2/dev.c index 49a55b90e2..643a1a8c85 100644 --- a/fs/ext2/dev.c +++ b/fs/ext2/dev.c @@ -123,4 +123,4 @@ int ext2fs_devread (int sector, int byte_offset, int byte_len, char *buf) { } return (1); } -#endif /* CFG_CMD_EXT2FS */ +#endif diff --git a/fs/ext2/ext2fs.c b/fs/ext2/ext2fs.c index e65e39b5ab..513a2f9e32 100644 --- a/fs/ext2/ext2fs.c +++ b/fs/ext2/ext2fs.c @@ -875,4 +875,4 @@ fail: return (0); } -#endif /* CFG_CMD_EXT2FS */ +#endif |