diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-02 16:42:34 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-22 10:31:48 -0500 |
commit | 2cc61a631bb8ae1acfadac9840abaa803091b7ac (patch) | |
tree | fb60ec9010f4f460f31bb254d1b7e372107ee023 | |
parent | 960379d4501fcb64ca20810c4fc4fe74806ede7b (diff) | |
download | u-boot-2cc61a631bb8ae1acfadac9840abaa803091b7ac.tar.gz u-boot-2cc61a631bb8ae1acfadac9840abaa803091b7ac.tar.bz2 u-boot-2cc61a631bb8ae1acfadac9840abaa803091b7ac.zip |
malta: Rename CONFIG_MALTA to CONFIG_TARGET_MALTA
Fixup this last remnant of CONFIG_MALTA.
Cc: Paul Burton <paul.burton@mips.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/rtc/mc146818.c | 2 | ||||
-rw-r--r-- | include/configs/malta.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/drivers/rtc/mc146818.c b/drivers/rtc/mc146818.c index 122691b978..03ce081d57 100644 --- a/drivers/rtc/mc146818.c +++ b/drivers/rtc/mc146818.c @@ -13,7 +13,7 @@ #include <dm.h> #include <rtc.h> -#if defined(CONFIG_X86) || defined(CONFIG_MALTA) +#if defined(CONFIG_X86) || defined(CONFIG_TARGET_MALTA) #include <asm/io.h> #define in8(p) inb(p) #define out8(p, v) outb(v, p) diff --git a/include/configs/malta.h b/include/configs/malta.h index 8ba04b4e6c..c17a4a4a8e 100644 --- a/include/configs/malta.h +++ b/include/configs/malta.h @@ -9,7 +9,6 @@ /* * System configuration */ -#define CONFIG_MALTA /* * CPU Configuration |