summaryrefslogtreecommitdiff
path: root/drivers/rtc/ds164x.c
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-07-07 23:39:12 +0200
committerAlexander Graf <agraf@suse.de>2018-07-25 15:00:24 +0200
commit5d889024010e0d2397c2bd3e6dd66e12e9f657d0 (patch)
tree9816ba1c6bad09030645a5fea145b6e85745c4d3 /drivers/rtc/ds164x.c
parent62045b0eb43285424712875b92ddc683cd00991e (diff)
downloadu-boot-5d889024010e0d2397c2bd3e6dd66e12e9f657d0.tar.gz
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/ds164x.c')
-rw-r--r--drivers/rtc/ds164x.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/rtc/ds164x.c b/drivers/rtc/ds164x.c
index 7ee6214b2b..f8707892e7 100644
--- a/drivers/rtc/ds164x.c
+++ b/drivers/rtc/ds164x.c
@@ -20,8 +20,6 @@
#include <rtc.h>
-#if defined(CONFIG_CMD_DATE)
-
static uchar rtc_read(unsigned int addr );
static void rtc_write(unsigned int addr, uchar val);
@@ -171,5 +169,3 @@ static void rtc_write( unsigned int addr, uchar val )
#endif
*(volatile unsigned char*)(addr) = val;
}
-
-#endif