]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL uses of CPU_MICROBLAZE
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:39:31 +0000 (15:39 -0700)
committerTom Rini <trini@konsulko.com>
Thu, 9 Feb 2023 21:32:26 +0000 (16:32 -0500)
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_CPU_MICROBLAZE defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/microblaze/cpu/cpuinfo.c
arch/microblaze/include/asm/cpuinfo.h

index f021f4e5e2559e1f7ec55d98c87b0705c408c0d4..6b15d6ca41c0a20f676aeaad73891c31616905de 100644 (file)
@@ -8,7 +8,7 @@
 
 DECLARE_GLOBAL_DATA_PTR;
 
-#if CONFIG_IS_ENABLED(CPU_MICROBLAZE)
+#if IS_ENABLED(CONFIG_CPU_MICROBLAZE)
 /* These key value are as per MBV field in PVR0 */
 static const struct microblaze_version_map cpu_ver_lookup[] = {
        {"5.00.a", 0x01},
index 86d2c8a034dc2abd5f96f05690abd5778a7ad6b1..3c58e52217c4a351fa47275cb3934f4e3274ca2a 100644 (file)
@@ -26,7 +26,7 @@ struct microblaze_cpuinfo {
        u32 dcache_size;
        u32 dcache_line_length;
 
-#if CONFIG_IS_ENABLED(CPU_MICROBLAZE)
+#if IS_ENABLED(CONFIG_CPU_MICROBLAZE)
        u32 use_mmu;
        u32 cpu_freq;
        u32 addr_size;