* Fix RTC configuration for PPChameleon board
[oweals/u-boot.git] / rtc / m41t11.c
index 11a1b086adaf6a1c8d3ad6cf1e2c37d9015bc9cb..c725cc9045f868192fd4d1060c538650aecac1f5 100644 (file)
@@ -23,6 +23,8 @@
  * can you believe a trademark on that?
  */
 
+/* #define DEBUG 1 */
+
 #include <common.h>
 #include <command.h>
 #include <rtc.h>
@@ -43,8 +45,6 @@
 
 #if defined(CONFIG_RTC_M41T11) && defined(CFG_I2C_RTC_ADDR) && (CONFIG_COMMANDS & CFG_CMD_DATE)
 
-#define DEBUG 1
-
 static unsigned bcd2bin (uchar n)
 {
        return ((((n >> 4) & 0x0F) * 10) + (n & 0x0F));