summaryrefslogtreecommitdiff
path: root/rtc/ds3231.c
diff options
context:
space:
mode:
Diffstat (limited to 'rtc/ds3231.c')
-rw-r--r--rtc/ds3231.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtc/ds3231.c b/rtc/ds3231.c
index 50aeeb5615..fe11b869f5 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)
+#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