aboutsummaryrefslogtreecommitdiff
path: root/drivers/rtc/m41t11.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt2018-07-07 23:39:12 +0200
committerAlexander Graf2018-07-25 15:00:24 +0200
commit5d889024010e0d2397c2bd3e6dd66e12e9f657d0 (patch)
tree9816ba1c6bad09030645a5fea145b6e85745c4d3 /drivers/rtc/m41t11.c
parent62045b0eb43285424712875b92ddc683cd00991e (diff)
rtc: remove CONFIG_CMD_DATE dependency
The EFI subsystem accesses the real time clock and is enabled by default. So we should drop any CONFIG_CMD_DATE dependency from the real time clock drivers. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'drivers/rtc/m41t11.c')
-rw-r--r--drivers/rtc/m41t11.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/rtc/m41t11.c b/drivers/rtc/m41t11.c
index e9971520984..960348bb3ea 100644
--- a/drivers/rtc/m41t11.c
+++ b/drivers/rtc/m41t11.c
@@ -29,8 +29,6 @@
#endif
*/
-#if defined(CONFIG_SYS_I2C_RTC_ADDR) && defined(CONFIG_CMD_DATE)
-
/* ------------------------------------------------------------------------- */
/*
these are simple defines for the chip local to here so they aren't too
@@ -167,4 +165,3 @@ void rtc_reset (void)
val = val & 0x3F;/*turn off freq test keep calibration*/
i2c_write(CONFIG_SYS_I2C_RTC_ADDR, RTC_CONTROL_ADDR, 1, &val, 1);
}
-#endif