]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - rtc/ds3231.c
Merge with git://www.denx.de/git/u-boot.git
[karo-tx-uboot.git] / rtc / ds3231.c
index 50aeeb5615d355e84b4014f7d794b74e7f765de1..fe11b869f55ac1aa384864a2ab29a00919639680 100644 (file)
@@ -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