diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-26 03:33:11 (GMT) |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-10-11 03:55:33 (GMT) |
commit | 3f14f814e79f5160e91a107fcac56d577867feac (patch) | |
tree | 6a3128f47054ac6249c3115907e95bdc8ce76f23 /drivers/rtc | |
parent | 2547f3ed897b0ce252db0ffb8596ec9730ea1833 (diff) | |
download | u-boot-3f14f814e79f5160e91a107fcac56d577867feac.tar.xz |
rtc: Use CONFIG_X86 instead of __I386__
For 64-bit x86, __I386__ should perhaps not be defined. It is not clear from
the definition, but let's use CONFIG_X86 to be sure.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/mc146818.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/mc146818.c b/drivers/rtc/mc146818.c index da804d5..4df9eda 100644 --- a/drivers/rtc/mc146818.c +++ b/drivers/rtc/mc146818.c @@ -14,7 +14,7 @@ #include <dm.h> #include <rtc.h> -#if defined(__I386__) || defined(CONFIG_MALTA) +#if defined(CONFIG_X86) || defined(CONFIG_MALTA) #include <asm/io.h> #define in8(p) inb(p) #define out8(p, v) outb(v, p) |