diff options
| -rw-r--r-- | include/_exports.h | 2 | ||||
| -rw-r--r-- | include/config_cmd_default.h | 1 | ||||
| -rw-r--r-- | include/exports.h | 2 | ||||
| -rw-r--r-- | include/lcd.h | 2 | ||||
| -rw-r--r-- | include/mk48t59.h | 2 | ||||
| -rw-r--r-- | include/net.h | 6 | ||||
| -rw-r--r-- | include/pcmcia.h | 6 | 
7 files changed, 10 insertions, 11 deletions
| diff --git a/include/_exports.h b/include/_exports.h index 2b8ec3d3f..a5799838e 100644 --- a/include/_exports.h +++ b/include/_exports.h @@ -15,7 +15,7 @@ EXPORT_FUNC(do_reset)  EXPORT_FUNC(getenv)  EXPORT_FUNC(setenv)  EXPORT_FUNC(simple_strtoul) -#if (CONFIG_COMMANDS & CFG_CMD_I2C) +#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C)  EXPORT_FUNC(i2c_write)  EXPORT_FUNC(i2c_read)  #endif	/* CFG_CMD_I2C */ diff --git a/include/config_cmd_default.h b/include/config_cmd_default.h index 81eba0165..f61cfc936 100644 --- a/include/config_cmd_default.h +++ b/include/config_cmd_default.h @@ -38,4 +38,3 @@  #define CONFIG_CMD_XIMG		/* Load part of Multi Image	*/  #endif	/* _CONFIG_CMD_DEFAULT_H */ -#endif	/* _CONFIG_CMD_DEFAULT_H */ diff --git a/include/exports.h b/include/exports.h index 8f7f61703..8a9b314cd 100644 --- a/include/exports.h +++ b/include/exports.h @@ -23,7 +23,7 @@ void do_reset (void);  unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base);  char *getenv (char *name);  void setenv (char *varname, char *varvalue); -#if (CONFIG_COMMANDS & CFG_CMD_I2C) +#if (CONFIG_COMMANDS & CFG_CMD_I2C) || defined(CONFIG_CMD_I2C)  int i2c_write (uchar, uint, int , uchar* , int);  int i2c_read (uchar, uint, int , uchar* , int);  #endif	/* CFG_CMD_I2C */ diff --git a/include/lcd.h b/include/lcd.h index b68858382..f0ec76aa3 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -173,7 +173,7 @@ void	lcd_printf	(const char *fmt, ...);  /************************************************************************/  /* ** BITMAP DISPLAY SUPPORT						*/  /************************************************************************/ -#if (CONFIG_COMMANDS & CFG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN) +#if (CONFIG_COMMANDS & CFG_CMD_BMP) || defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)  # include <bmp_layout.h>  # include <asm/byteorder.h>  #endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) || CONFIG_SPLASH_SCREEN */ diff --git a/include/mk48t59.h b/include/mk48t59.h index 03c992e06..fbdb9f9d1 100644 --- a/include/mk48t59.h +++ b/include/mk48t59.h @@ -26,7 +26,7 @@   */ -#if defined(CONFIG_RTC_MK48T59) && (CONFIG_COMMANDS & CFG_CMD_DATE) +#if defined(CONFIG_RTC_MK48T59) && ((CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_CMD_DATE))  #define RTC_PORT_ADDR0		CFG_ISA_IO +  0x70  #define RTC_PORT_ADDR1		RTC_PORT_ADDR0 +  0x1 diff --git a/include/net.h b/include/net.h index 461e03801..853f55a75 100644 --- a/include/net.h +++ b/include/net.h @@ -341,17 +341,17 @@ typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP  /* from net/net.c */  extern char	BootFile[128];			/* Boot File name		*/ -#if (CONFIG_COMMANDS & CFG_CMD_PING) +#if (CONFIG_COMMANDS & CFG_CMD_PING) || defined(CONFIG_CMD_PING)  extern IPaddr_t	NetPingIP;			/* the ip address to ping 		*/  #endif -#if (CONFIG_COMMANDS & CFG_CMD_CDP) +#if (CONFIG_COMMANDS & CFG_CMD_CDP) || defined(CONFIG_CMD_CDP)  /* when CDP completes these hold the return values */  extern ushort CDPNativeVLAN;  extern ushort CDPApplianceVLAN;  #endif -#if (CONFIG_COMMANDS & CFG_CMD_SNTP) +#if (CONFIG_COMMANDS & CFG_CMD_SNTP) || defined(CONFIG_CMD_SNTP)  extern IPaddr_t	NetNtpServerIP;			/* the ip address to NTP 	*/  extern int NetTimeOffset;			/* offset time from UTC		*/  #endif diff --git a/include/pcmcia.h b/include/pcmcia.h index 8f564da9b..60794f90e 100644 --- a/include/pcmcia.h +++ b/include/pcmcia.h @@ -31,8 +31,8 @@   * Allow configuration to select PCMCIA slot,   * or try to generate a useful default   */ -#if ( CONFIG_COMMANDS & CFG_CMD_PCMCIA) || \ -    ((CONFIG_COMMANDS & CFG_CMD_IDE) && \ +#if (CONFIG_COMMANDS & CFG_CMD_PCMCIA) || defined(CONFIG_CMD_PCMCIA) || \ +    (((CONFIG_COMMANDS & CFG_CMD_IDE) || defined(CONFIG_CMD_IDE)) && \  	(defined(CONFIG_IDE_8xx_PCCARD) || defined(CONFIG_IDE_8xx_DIRECT) ) )  #if !defined(CONFIG_PCMCIA_SLOT_A) && !defined(CONFIG_PCMCIA_SLOT_B) @@ -313,7 +313,7 @@ extern u_int *pcmcia_pgcrx[];  #define	PCMCIA_PGCRX(slot)	(*pcmcia_pgcrx[slot])  #endif -#if	(CONFIG_COMMANDS & CFG_CMD_IDE) && defined(CONFIG_IDE_8xx_PCCARD) \ +#if ((CONFIG_COMMANDS & CFG_CMD_IDE) || defined(CONFIG_CMD_IDE)) && defined(CONFIG_IDE_8xx_PCCARD) \  	|| defined(CONFIG_PXA_PCMCIA)  extern int check_ide_device(int slot);  #endif |