diff options
| author | Jon Loeliger <jdl@freescale.com> | 2007-07-09 18:31:28 -0500 | 
|---|---|---|
| committer | Jon Loeliger <jdl@freescale.com> | 2007-07-09 18:48:06 -0500 | 
| commit | c508a4cefd8a953fc64957650506a035e6e3d9d1 (patch) | |
| tree | 8d6dfc5e3cabb62bc916cc989a613aa3d3534396 /board/gen860t/gen860t.c | |
| parent | b9307262f8a9f3b5c9e15a6067eadc17407146f6 (diff) | |
| download | olio-uboot-2014.01-c508a4cefd8a953fc64957650506a035e6e3d9d1.tar.xz olio-uboot-2014.01-c508a4cefd8a953fc64957650506a035e6e3d9d1.zip | |
board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/gen860t/gen860t.c')
| -rw-r--r-- | board/gen860t/gen860t.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/gen860t/gen860t.c b/board/gen860t/gen860t.c index 4fff5a346..4bfdcac0d 100644 --- a/board/gen860t/gen860t.c +++ b/board/gen860t/gen860t.c @@ -222,7 +222,7 @@ long int initdram (int board_type)   * Disk On Chip (DOC) Millenium initialization.   * The DOC lives in the CS2* space   */ -#if (CONFIG_COMMANDS & CFG_CMD_DOC) || defined(CONFIG_CMD_DOC) +#if defined(CONFIG_CMD_DOC)  extern void doc_probe (ulong physadr);  void doc_init (void) @@ -250,7 +250,7 @@ int misc_init_r (void)  	config_mpc8xx_ioports (immr); -#if (CONFIG_COMMANDS & CFG_CMD_MII) || defined(CONFIG_CMD_MII) +#if defined(CONFIG_CMD_MII)  	mii_init ();  #endif |