diff options
Diffstat (limited to 'board')
| -rw-r--r-- | board/cm5200/cmd_cm5200.c | 4 | ||||
| -rw-r--r-- | board/pcs440ep/pcs440ep.c | 4 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/board/cm5200/cmd_cm5200.c b/board/cm5200/cmd_cm5200.c index 5119a99ca..fd9b914ae 100644 --- a/board/cm5200/cmd_cm5200.c +++ b/board/cm5200/cmd_cm5200.c @@ -27,7 +27,7 @@  #include <i2c.h>  #include <usb.h> -#if (CONFIG_COMMANDS & CFG_CMD_BSP) +#ifdef CONFIG_CMD_BSB  int do_i2c(char *argv[])  { @@ -445,4 +445,4 @@ U_BOOT_CMD(  	"fkt usb\n"  	"     - Test USB communication\n"  ); -#endif /* CFG_CMD_BSP */ +#endif /* CONFIG_CMD_BSP */ diff --git a/board/pcs440ep/pcs440ep.c b/board/pcs440ep/pcs440ep.c index 696423eac..e247fee0c 100644 --- a/board/pcs440ep/pcs440ep.c +++ b/board/pcs440ep/pcs440ep.c @@ -879,7 +879,7 @@ int ide_preinit (void)  }  #endif -#if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) +#if defined (CONFIG_CMD_IDE) && defined (CONFIG_IDE_RESET)  void ide_set_reset (int idereset)  {  	debug ("ide_reset(%d)\n", idereset); @@ -890,4 +890,4 @@ void ide_set_reset (int idereset)  	}  	udelay (10000);  } -#endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */ +#endif /* defined (CONFIG_CMD_IDE) && defined (CONFIG_IDE_RESET) */ |