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/pcf8563.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/pcf8563.c')
-rw-r--r-- | drivers/rtc/pcf8563.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/rtc/pcf8563.c b/drivers/rtc/pcf8563.c index e2fa6b6aab6..a839d6cc98b 100644 --- a/drivers/rtc/pcf8563.c +++ b/drivers/rtc/pcf8563.c @@ -15,8 +15,6 @@ #include <rtc.h> #include <i2c.h> -#if defined(CONFIG_CMD_DATE) - static uchar rtc_read (uchar reg); static void rtc_write (uchar reg, uchar val); @@ -117,5 +115,3 @@ static void rtc_write (uchar reg, uchar val) { i2c_reg_write (CONFIG_SYS_I2C_RTC_ADDR, reg, val); } - -#endif |