diff options
| author | Jon Loeliger <jdl@freescale.com> | 2007-07-09 18:10:50 -0500 | 
|---|---|---|
| committer | Jon Loeliger <jdl@freescale.com> | 2007-07-09 18:10:50 -0500 | 
| commit | a593814f2be0c9cdc3133cd550b167b8a988328f (patch) | |
| tree | 359ce4e926a370c17f571461c71b950da7c5f93c /rtc/ds3231.c | |
| parent | 67350568f9d46e66c21829f3513b3db0caeb948b (diff) | |
| download | olio-uboot-2014.01-a593814f2be0c9cdc3133cd550b167b8a988328f.tar.xz olio-uboot-2014.01-a593814f2be0c9cdc3133cd550b167b8a988328f.zip | |
rtc/: Remove obsolete references to CONFIG_COMMANDS
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'rtc/ds3231.c')
| -rw-r--r-- | rtc/ds3231.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/rtc/ds3231.c b/rtc/ds3231.c index 208f1522b..fe11b869f 100644 --- a/rtc/ds3231.c +++ b/rtc/ds3231.c @@ -33,7 +33,7 @@  #include <rtc.h>  #include <i2c.h> -#if defined(CONFIG_RTC_DS3231) && ((CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_CMD_DATE)) +#if defined(CONFIG_RTC_DS3231) && defined(CONFIG_CMD_DATE)  /*---------------------------------------------------------------------*/  #undef DEBUG_RTC @@ -190,4 +190,4 @@ static unsigned char bin2bcd (unsigned int n)  	return (((n / 10) << 4) | (n % 10));  } -#endif /* (CONFIG_RTC_DS3231) && (CONFIG_COMMANDS & CFG_CMD_DATE) */ +#endif |