summaryrefslogtreecommitdiff
path: root/drivers/rtc/pcf8563.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-07-08 00:39:12 +0300
committerAlexander Graf <agraf@suse.de>2018-07-25 16:00:24 +0300
commit5d889024010e0d2397c2bd3e6dd66e12e9f657d0 (patch)
tree9816ba1c6bad09030645a5fea145b6e85745c4d3 /drivers/rtc/pcf8563.c
parent62045b0eb43285424712875b92ddc683cd00991e (diff)
downloadu-boot-5d889024010e0d2397c2bd3e6dd66e12e9f657d0.tar.xz
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.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/rtc/pcf8563.c b/drivers/rtc/pcf8563.c
index e2fa6b6aab..a839d6cc98 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