board/[j-z]*: 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>
This commit is contained in:
Jon Loeliger 2007-07-10 10:48:22 -05:00
parent 77a318545d
commit d39b574158
27 changed files with 42 additions and 42 deletions

View File

@ -281,7 +281,7 @@ void pci_init_board(void)
}
#endif
#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
void init_ide_reset (void)
{
@ -306,7 +306,7 @@ void ide_set_reset (int idereset)
*(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4;
}
}
#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
#endif
#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
void

View File

@ -144,7 +144,7 @@ int pcmcia_hardware_disable(int slot)
return (0);
}
#endif /* CFG_CMD_PCMCIA */
#endif
int pcmcia_voltage_set(int slot, int vcc, int vpp)

View File

@ -960,7 +960,7 @@ U_BOOT_CMD(
"lsb - print current setting\n"
);
#endif /* CFG_CMD_BSP */
#endif
/*----------------------------- Utilities -----------------------------*/
/***********************************************************************

View File

@ -166,7 +166,7 @@ int pcmcia_hardware_disable(int slot)
return (0);
}
#endif /* CFG_CMD_PCMCIA */
#endif
int pcmcia_voltage_set(int slot, int vcc, int vpp)

View File

@ -45,7 +45,7 @@
#endif
#if !defined(CONFIG_CMD_FAT)
#error "must define CFG_CMD_FAT"
#error "must define CONFIG_CMD_FAT"
#endif
#undef AU_DEBUG

View File

@ -307,7 +307,7 @@ void pci_init_board(void)
}
#endif
#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
void init_ide_reset (void)
{
@ -320,7 +320,7 @@ void ide_set_reset (int idereset)
debug ("ide_reset(%d)\n", idereset);
}
#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
#endif
#if defined(CONFIG_CMD_DOC)
extern void doc_probe (ulong physadr);

View File

@ -291,7 +291,7 @@ int pcmcia_hardware_disable(int slot)
return (0);
}
#endif /* CFG_CMD_PCMCIA */
#endif
int pcmcia_voltage_set(int slot, int vcc, int vpp)

View File

@ -241,5 +241,5 @@ U_BOOT_CMD(
"wd - print current status\n"
);
#endif /* CFG_CMD_BSP */
#endif
#endif /* CONFIG_WATCHDOG */

View File

@ -299,7 +299,7 @@ void pci_init_board(void)
}
#endif
#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
void init_ide_reset (void)
{
@ -312,7 +312,7 @@ void ide_set_reset (int idereset)
debug ("ide_reset(%d)\n", idereset);
}
#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
#endif
#if defined(CONFIG_CMD_DOC)
extern void doc_probe (ulong physadr);

View File

@ -150,7 +150,7 @@ int pcmcia_hardware_disable(int slot)
return (0);
}
#endif /* CFG_CMD_PCMCIA */
#endif
int pcmcia_voltage_set(int slot, int vcc, int vpp)

View File

@ -873,7 +873,7 @@ spi_chipsel_type spi_chipsel[] = {
};
int spi_chipsel_cnt = sizeof(spi_chipsel) / sizeof(spi_chipsel[0]);
#endif /* CFG_CMD_SPI */
#endif
#endif /* CONFIG_MISC_INIT_R */

View File

@ -408,7 +408,7 @@ U_BOOT_CMD (puma, 4, 1, do_puma,
"status - print PUMA status\n"
"puma load addr len - load PUMA configuration data\n");
#endif /* CFG_CMD_BSP */
#endif
/* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */

View File

@ -77,7 +77,7 @@ int checkboard (void)
#if defined(CONFIG_CMD_PCMCIA)
#error "SXNI855T has no PCMCIA port"
#endif /* CFG_CMD_PCMCIA */
#endif
/* ------------------------------------------------------------------------- */

View File

@ -89,7 +89,7 @@ spi_chipsel_type spi_chipsel[] = {
};
int spi_chipsel_cnt = sizeof(spi_chipsel) / sizeof(spi_chipsel[0]);
#endif /* CFG_CMD_SPI */
#endif
#if defined(CONFIG_POST)
/*

View File

@ -158,5 +158,5 @@ int do_sled (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD (sled, 3, 0, do_sled,
"sled - check and set status led\n",
"sled [name [state]]\n" __NAME_STR " - state: on|off|blink\n");
#endif /* CFG_CMD_BSP */
#endif
#endif /* CONFIG_STATUS_LED */

View File

@ -156,5 +156,5 @@ U_BOOT_CMD(
"wd off - switch watchdog off\n"
"wd - print current status\n"
);
#endif /* CFG_CMD_BSP */
#endif
#endif /* CONFIG_HW_WATCHDOG */

View File

@ -109,7 +109,7 @@ void pci_init_board(void)
}
#endif
#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
/* IRDA_1 aka PSC6_3 (pin C13) */
#define GPIO_IRDA_1 0x20000000UL
@ -133,7 +133,7 @@ void ide_set_reset (int idereset)
*(vu_long *) MPC5XXX_GPIO_DATA_O |= GPIO_IRDA_1;
}
}
#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
#endif
#ifdef CONFIG_VIDEO_SED13806
#include <sed13806.h>

View File

@ -1241,4 +1241,4 @@ U_BOOT_CMD(
" - loopback plug(s) for X21/X22 required\n"
);
#endif
#endif /* CFG_CMD_BSP */
#endif

View File

@ -101,4 +101,4 @@ U_BOOT_CMD(
);
#endif /* CONFIG_STK52XX */
#endif /* CFG_CMD_BSP */
#endif

View File

@ -336,7 +336,7 @@ void pci_init_board(void)
}
#endif
#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
#if defined (CONFIG_MINIFAP)
#define SM501_POWER_MODE0_GATE 0x00000040UL
@ -389,7 +389,7 @@ void ide_set_reset (int idereset)
}
#endif
}
#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
#endif
#ifdef CONFIG_POST
/*

View File

@ -1212,7 +1212,7 @@ int board_nand_init(struct nand_chip *nand)
return 0;
}
#endif /* CFG_CMD_NAND */
#endif
#ifdef CONFIG_PCI
struct pci_controller hose;

View File

@ -47,7 +47,7 @@
#endif
#if !defined(CONFIG_CMD_FAT)
#error "must define CFG_CMD_FAT"
#error "must define CONFIG_CMD_FAT"
#endif
/*

View File

@ -893,4 +893,4 @@ U_BOOT_CMD(
" For each measurment a timestamp is printeted\n"
);
#endif /* CFG_CMD_BSP */
#endif

View File

@ -155,7 +155,7 @@ int i2c_write_multiple (uchar chip, uint addr, int alen, uchar *buffer,
int len);
int i2c_read_multiple ( uchar chip, uint addr, int alen, uchar *buffer,
int len);
#endif /* CFG_CMD_I2C */
#endif
/*
* TRAB board specific commands. Especially commands for burn-in and function
@ -1019,10 +1019,10 @@ static int touch_write_clibration_values (int calib_point, int x, int y)
}
return 1;
#else
printf ("No I2C support enabled (CFG_CMD_I2C), could not write "
printf ("No I2C support enabled (CONFIG_CMD_I2C), could not write "
"to EEPROM\n");
return (1);
#endif /* CFG_CMD_I2C */
#endif
}
@ -1130,10 +1130,10 @@ int do_serial_number (char **argv)
printf ("%s: unknown command %s\n", __FUNCTION__, argv[2]);
return (1); /* unknown command, return error */
#else
printf ("No I2C support enabled (CFG_CMD_I2C), could not write "
printf ("No I2C support enabled (CONFIG_CMD_I2C), could not write "
"to EEPROM\n");
return (1);
#endif /* CFG_CMD_I2C */
#endif
}
@ -1160,10 +1160,10 @@ int do_crc16 (void)
}
return (0);
#else
printf ("No I2C support enabled (CFG_CMD_I2C), could not write "
printf ("No I2C support enabled (CONFIG_CMD_I2C), could not write "
"to EEPROM\n");
return (1);
#endif /* CFG_CMD_I2C */
#endif
}
@ -1272,10 +1272,10 @@ int do_eeprom (char **argv)
printf ("%s: invalid parameter %s\n", __FUNCTION__, argv[2]);
return (1);
#else
printf ("No I2C support enabled (CFG_CMD_I2C), could not write "
printf ("No I2C support enabled (CONFIG_CMD_I2C), could not write "
"to EEPROM\n");
return (1);
#endif /* CFG_CMD_I2C */
#endif
}
#if defined(CONFIG_CMD_I2C)
@ -1408,4 +1408,4 @@ int i2c_read_multiple ( uchar chip, uint addr, int alen,
}
return (0);
}
#endif /* CFG_CMD_I2C */
#endif

View File

@ -149,7 +149,7 @@ int pcmcia_hardware_disable(int slot)
return (0);
}
#endif /* CFG_CMD_PCMCIA */
#endif
int pcmcia_voltage_set(int slot, int vcc, int vpp)

View File

@ -224,7 +224,7 @@ int board_early_init_r(void)
}
#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET)
#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
void init_ide_reset(void)
{
debug("init_ide_reset\n");
@ -248,7 +248,7 @@ void ide_set_reset(int idereset)
} else
*(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4;
}
#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */
#endif
#ifdef CONFIG_HW_WATCHDOG

View File

@ -151,4 +151,4 @@ kgdb_interruptible(int yes)
{
return;
}
#endif /* CFG_CMD_KGDB */
#endif