diff options
| -rw-r--r-- | board/r360mpi/pcmcia.c | 6 | ||||
| -rw-r--r-- | board/sacsng/sacsng.c | 2 | ||||
| -rw-r--r-- | board/sbc2410x/sbc2410x.c | 6 | ||||
| -rw-r--r-- | board/sc3/sc3nand.c | 2 | ||||
| -rw-r--r-- | board/siemens/common/fpga.c | 4 | ||||
| -rw-r--r-- | board/siemens/pcu_e/pcu_e.c | 2 | ||||
| -rw-r--r-- | board/sixnet/sixnet.c | 6 | ||||
| -rw-r--r-- | board/ssv/adnpesc1/adnpesc1.c | 2 | ||||
| -rw-r--r-- | board/ssv/common/cmd_sled.c | 2 | ||||
| -rw-r--r-- | board/ssv/common/wd_pio.c | 2 | ||||
| -rw-r--r-- | board/stxxtc/stxxtc.c | 2 | ||||
| -rw-r--r-- | board/svm_sc8xx/svm_sc8xx.c | 2 | ||||
| -rw-r--r-- | board/tqm5200/cmd_stk52xx.c | 2 | ||||
| -rw-r--r-- | board/tqm5200/cmd_tb5200.c | 2 | ||||
| -rw-r--r-- | board/tqm8272/tqm8272.c | 2 | ||||
| -rw-r--r-- | board/trab/auto_update.c | 2 | ||||
| -rw-r--r-- | board/trab/cmd_trab.c | 6 | ||||
| -rw-r--r-- | board/trab/trab_fkt.c | 12 | ||||
| -rw-r--r-- | board/uc100/pcmcia.c | 6 | ||||
| -rw-r--r-- | board/w7o/cmd_vpd.c | 4 | ||||
| -rw-r--r-- | board/xilinx/ml300/serial.c | 2 | ||||
| -rw-r--r-- | board/zylonite/nand.c | 2 | 
22 files changed, 39 insertions, 39 deletions
| diff --git a/board/r360mpi/pcmcia.c b/board/r360mpi/pcmcia.c index 0b40001a0..c5e399098 100644 --- a/board/r360mpi/pcmcia.c +++ b/board/r360mpi/pcmcia.c @@ -4,11 +4,11 @@  #undef	CONFIG_PCMCIA -#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) || defined(CONFIG_CMD_PCMCIA) +#if defined(CONFIG_CMD_PCMCIA)  #define	CONFIG_PCMCIA  #endif -#if ((CONFIG_COMMANDS & CFG_CMD_IDE) || defined(CONFIG_CMD_IDE)) && defined(CONFIG_IDE_8xx_PCCARD) +#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_8xx_PCCARD)  #define	CONFIG_PCMCIA  #endif @@ -123,7 +123,7 @@ int pcmcia_hardware_enable(int slot)  } -#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) || defined(CONFIG_CMD_PCMCIA) +#if defined(CONFIG_CMD_PCMCIA)  int pcmcia_hardware_disable(int slot)  {  	volatile immap_t	*immap; diff --git a/board/sacsng/sacsng.c b/board/sacsng/sacsng.c index cfd18dd03..208f21e18 100644 --- a/board/sacsng/sacsng.c +++ b/board/sacsng/sacsng.c @@ -837,7 +837,7 @@ void show_boot_progress (int status)  /*   * The following are used to control the SPI chip selects for the SPI command.   */ -#if (CONFIG_COMMANDS & CFG_CMD_SPI) || defined(CONFIG_CMD_SPI) +#if defined(CONFIG_CMD_SPI)  #define SPI_ADC_CS_MASK	0x00000800  #define SPI_DAC_CS_MASK	0x00001000 diff --git a/board/sbc2410x/sbc2410x.c b/board/sbc2410x/sbc2410x.c index dbd095ec8..b4865e122 100644 --- a/board/sbc2410x/sbc2410x.c +++ b/board/sbc2410x/sbc2410x.c @@ -31,7 +31,7 @@  #include <common.h>  #include <s3c2410.h> -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <linux/mtd/nand.h>  #endif @@ -136,7 +136,7 @@ int dram_init (void)  	return 0;  } -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  extern ulong nand_probe(ulong physadr);  static inline void NF_Reset(void) @@ -180,4 +180,4 @@ void nand_init(void)  #endif  	printf ("%4lu MB\n", nand_probe((ulong)nand) >> 20);  } -#endif /* CONFIG_COMMANDS & CFG_CMD_NAND */ +#endif diff --git a/board/sc3/sc3nand.c b/board/sc3/sc3nand.c index 8d1d327bd..009567b50 100644 --- a/board/sc3/sc3nand.c +++ b/board/sc3/sc3nand.c @@ -23,7 +23,7 @@  #include <common.h> -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <nand.h>  #include <asm/processor.h> diff --git a/board/siemens/common/fpga.c b/board/siemens/common/fpga.c index 62846d6ea..f022ed6d5 100644 --- a/board/siemens/common/fpga.c +++ b/board/siemens/common/fpga.c @@ -219,7 +219,7 @@ static int fpga_load (fpga_t* fpga, ulong addr, int checkall)      return 1;  } -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */ @@ -299,7 +299,7 @@ U_BOOT_CMD(  	"fpga load [name] addr - load FPGA configuration data\n"  ); -#endif	/* CONFIG_COMMANDS & CFG_CMD_BSP */ +#endif  /* . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . */ diff --git a/board/siemens/pcu_e/pcu_e.c b/board/siemens/pcu_e/pcu_e.c index 94aba4634..6c37445cd 100644 --- a/board/siemens/pcu_e/pcu_e.c +++ b/board/siemens/pcu_e/pcu_e.c @@ -368,7 +368,7 @@ void reset_phy (void)  /*-----------------------------------------------------------------------   * Board Special Commands: access functions for "PUMA" FPGA   */ -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  #define	PUMA_READ_MODE	0  #define PUMA_LOAD_MODE	1 diff --git a/board/sixnet/sixnet.c b/board/sixnet/sixnet.c index d6a26f449..41c74f6a6 100644 --- a/board/sixnet/sixnet.c +++ b/board/sixnet/sixnet.c @@ -33,7 +33,7 @@  # include <status_led.h>  #endif -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <linux/mtd/nand_legacy.h>  extern struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE];  #endif @@ -75,7 +75,7 @@ int checkboard (void)  /* ------------------------------------------------------------------------- */ -#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) || defined(CONFIG_CMD_PCMCIA) +#if defined(CONFIG_CMD_PCMCIA)  #error "SXNI855T has no PCMCIA port"  #endif	/* CFG_CMD_PCMCIA */ @@ -327,7 +327,7 @@ int misc_init_r (void)  	return (0);  } -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  void nand_init(void)  {  	unsigned long totlen = nand_probe(CFG_DFLASH_BASE); diff --git a/board/ssv/adnpesc1/adnpesc1.c b/board/ssv/adnpesc1/adnpesc1.c index b38a47061..8edbd70ed 100644 --- a/board/ssv/adnpesc1/adnpesc1.c +++ b/board/ssv/adnpesc1/adnpesc1.c @@ -65,7 +65,7 @@ long int initdram (int board_type)  /*   * The following are used to control the SPI chip selects for the SPI command.   */ -#if ((CONFIG_COMMANDS & CFG_CMD_SPI) || defined(CONFIG_CMD_SPI)) && CONFIG_NIOS_SPI +#if defined(CONFIG_CMD_SPI) && CONFIG_NIOS_SPI  #define	SPI_RTC_CS_MASK	0x00000001 diff --git a/board/ssv/common/cmd_sled.c b/board/ssv/common/cmd_sled.c index b853e83d9..8cdf45ab0 100644 --- a/board/ssv/common/cmd_sled.c +++ b/board/ssv/common/cmd_sled.c @@ -46,7 +46,7 @@ typedef struct {  extern led_dev_t led_dev[]; -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  int do_sled (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  {  	int led_id = 0; diff --git a/board/ssv/common/wd_pio.c b/board/ssv/common/wd_pio.c index 3424b1a6f..69e9ed7a7 100644 --- a/board/ssv/common/wd_pio.c +++ b/board/ssv/common/wd_pio.c @@ -112,7 +112,7 @@ void hw_watchdog_reset(void)  		enable_interrupts ();  } -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  int do_wd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  {  	nios_pio_t *ena_piop	 = (nios_pio_t*)CONFIG_HW_WDENA_BASE; diff --git a/board/stxxtc/stxxtc.c b/board/stxxtc/stxxtc.c index 703ac6f0d..87a202276 100644 --- a/board/stxxtc/stxxtc.c +++ b/board/stxxtc/stxxtc.c @@ -574,7 +574,7 @@ int board_early_init_f(void)  	return 0;  } -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <linux/mtd/nand_legacy.h> diff --git a/board/svm_sc8xx/svm_sc8xx.c b/board/svm_sc8xx/svm_sc8xx.c index d35d38a88..b900e6bd1 100644 --- a/board/svm_sc8xx/svm_sc8xx.c +++ b/board/svm_sc8xx/svm_sc8xx.c @@ -153,7 +153,7 @@ long int initdram (int board_type)  	return (size_b0 );  } -#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)  { diff --git a/board/tqm5200/cmd_stk52xx.c b/board/tqm5200/cmd_stk52xx.c index 320739aae..802332f70 100644 --- a/board/tqm5200/cmd_stk52xx.c +++ b/board/tqm5200/cmd_stk52xx.c @@ -29,7 +29,7 @@  #include <common.h>  #include <command.h> -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  #if defined(CONFIG_STK52XX) || defined(CONFIG_FO300)  #define DEFAULT_VOL	45 diff --git a/board/tqm5200/cmd_tb5200.c b/board/tqm5200/cmd_tb5200.c index bc6c67c62..cd141c172 100644 --- a/board/tqm5200/cmd_tb5200.c +++ b/board/tqm5200/cmd_tb5200.c @@ -29,7 +29,7 @@  #include <common.h>  #include <command.h> -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  #if defined (CONFIG_TB5200)  #define SM501_PANEL_DISPLAY_CONTROL	0x00080000UL diff --git a/board/tqm8272/tqm8272.c b/board/tqm8272/tqm8272.c index b7fea354d..653b7a9f4 100644 --- a/board/tqm8272/tqm8272.c +++ b/board/tqm8272/tqm8272.c @@ -1065,7 +1065,7 @@ int update_flash_size (int flash_size)  }  #endif -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <nand.h>  #include <linux/mtd/mtd.h> diff --git a/board/trab/auto_update.c b/board/trab/auto_update.c index cc0e3664b..ad8886743 100644 --- a/board/trab/auto_update.c +++ b/board/trab/auto_update.c @@ -46,7 +46,7 @@  #error "must define CFG_HUSH_PARSER"  #endif -#if !((CONFIG_COMMANDS & CFG_CMD_FAT) || defined(CONFIG_CMD_FAT)) +#if !defined(CONFIG_CMD_FAT)  #error "must define CFG_CMD_FAT"  #endif diff --git a/board/trab/cmd_trab.c b/board/trab/cmd_trab.c index 7dd97a1cb..2db6a34b8 100644 --- a/board/trab/cmd_trab.c +++ b/board/trab/cmd_trab.c @@ -32,7 +32,7 @@   * TRAB board specific commands. Especially commands for burn-in and function   * test.   */ -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  /* limits for valid range of VCC5V in mV  */  #define VCC5V_MIN       4500 @@ -846,7 +846,7 @@ int do_temp_log (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  {  	int contact_temp;  	int delay = 0; -#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_CMD_DATE) +#if defined(CONFIG_CMD_DATE)  	struct rtc_time tm;  #endif @@ -862,7 +862,7 @@ int do_temp_log (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	spi_init ();  	while (1) { -#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_CMD_DATE) +#if defined(CONFIG_CMD_DATE)  		rtc_get (&tm);  		printf ("%4d-%02d-%02d %2d:%02d:%02d - ",  			tm.tm_year, tm.tm_mon, tm.tm_mday, diff --git a/board/trab/trab_fkt.c b/board/trab/trab_fkt.c index 64e9b9a2a..56a80ff4c 100644 --- a/board/trab/trab_fkt.c +++ b/board/trab/trab_fkt.c @@ -148,7 +148,7 @@ static int rs485_receive_chars (char *data, int timeout);  static unsigned short updcrc(unsigned short icrc, unsigned char *icp,  			     unsigned int icnt); -#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  static int trab_eeprom_read (char **argv);  static int trab_eeprom_write (char **argv);  int i2c_write_multiple (uchar chip, uint addr, int alen, uchar *buffer, @@ -959,7 +959,7 @@ static int touch_check_pressed (void)  static int touch_write_clibration_values (int calib_point, int x, int y)  { -#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  	int x_verify = 0;  	int y_verify = 0; @@ -1105,7 +1105,7 @@ static int rs485_receive_chars (char *data, int timeout)  int do_serial_number (char **argv)  { -#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  	unsigned int serial_number;  	if (strcmp (argv[2], "read") == 0) { @@ -1139,7 +1139,7 @@ int do_serial_number (char **argv)  int do_crc16 (void)  { -#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  	int crc;  	unsigned char buf[EEPROM_MAX_CRC_BUF]; @@ -1260,7 +1260,7 @@ int do_gain (char **argv)  int do_eeprom (char **argv)  { -#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  	if (strcmp (argv[2], "read") == 0) {  		return (trab_eeprom_read (argv));  	} @@ -1278,7 +1278,7 @@ int do_eeprom (char **argv)  #endif /* CFG_CMD_I2C */  } -#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C) +#if defined(CONFIG_CMD_I2C)  static int trab_eeprom_read (char **argv)  {  	int i; diff --git a/board/uc100/pcmcia.c b/board/uc100/pcmcia.c index 2d1746f68..74d29b966 100644 --- a/board/uc100/pcmcia.c +++ b/board/uc100/pcmcia.c @@ -4,11 +4,11 @@  #undef	CONFIG_PCMCIA -#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) || defined(CONFIG_CMD_PCMCIA) +#if defined(CONFIG_CMD_PCMCIA)  #define	CONFIG_PCMCIA  #endif -#if ((CONFIG_COMMANDS & CFG_CMD_IDE) || defined(CONFIG_CMD_IDE)) && defined(CONFIG_IDE_8xx_PCCARD) +#if (defined(CONFIG_CMD_IDE)) && defined(CONFIG_IDE_8xx_PCCARD)  #define	CONFIG_PCMCIA  #endif @@ -123,7 +123,7 @@ int pcmcia_hardware_enable(int slot)  } -#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) || defined(CONFIG_CMD_PCMCIA) +#if defined(CONFIG_CMD_PCMCIA)  int pcmcia_hardware_disable(int slot)  {  	volatile immap_t	*immap; diff --git a/board/w7o/cmd_vpd.c b/board/w7o/cmd_vpd.c index 58c4a0b31..fdd6ceb8b 100644 --- a/board/w7o/cmd_vpd.c +++ b/board/w7o/cmd_vpd.c @@ -24,7 +24,7 @@  #include <common.h>  #include <command.h> -#if (CONFIG_COMMANDS & CFG_CMD_BSP) || defined(CONFIG_CMD_BSP) +#if defined(CONFIG_CMD_BSP)  #include "vpd.h" @@ -63,4 +63,4 @@ U_BOOT_CMD(  	  "        - Read VPD Data from default address, or device address 'dev_addr'.\n"  ); -#endif /* (CONFIG_COMMANDS & CFG_CMD_BSP) */ +#endif diff --git a/board/xilinx/ml300/serial.c b/board/xilinx/ml300/serial.c index e4b743ac5..09a3dc304 100644 --- a/board/xilinx/ml300/serial.c +++ b/board/xilinx/ml300/serial.c @@ -122,7 +122,7 @@ serial_puts(const char *s)  	}  } -#if (CONFIG_COMMANDS & CFG_CMD_KGDB) || defined(CONFIG_CMD_KGDB) +#if defined(CONFIG_CMD_KGDB)  void  kgdb_serial_init(void)  { diff --git a/board/zylonite/nand.c b/board/zylonite/nand.c index 3655273a4..aa3932ad2 100644 --- a/board/zylonite/nand.c +++ b/board/zylonite/nand.c @@ -22,7 +22,7 @@  #include <common.h> -#if (CONFIG_COMMANDS & CFG_CMD_NAND) || defined(CONFIG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #ifdef CONFIG_NEW_NAND_CODE  #include <nand.h> |