diff options
author | Heinrich Schuchardt | 2018-07-07 23:39:12 +0200 |
---|---|---|
committer | Alexander Graf | 2018-07-25 15:00:24 +0200 |
commit | 5d889024010e0d2397c2bd3e6dd66e12e9f657d0 (patch) | |
tree | 9816ba1c6bad09030645a5fea145b6e85745c4d3 /drivers/rtc/max6900.c | |
parent | 62045b0eb43285424712875b92ddc683cd00991e (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/max6900.c')
-rw-r--r-- | drivers/rtc/max6900.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/rtc/max6900.c b/drivers/rtc/max6900.c index f5c651bad0d..b35186579a5 100644 --- a/drivers/rtc/max6900.c +++ b/drivers/rtc/max6900.c @@ -15,8 +15,6 @@ #include <rtc.h> #include <i2c.h> -#if defined(CONFIG_CMD_DATE) - #ifndef CONFIG_SYS_I2C_RTC_ADDR #define CONFIG_SYS_I2C_RTC_ADDR 0x50 #endif @@ -104,5 +102,3 @@ int rtc_set (struct rtc_time *tmp) void rtc_reset (void) { } - -#endif |