Correct SPL uses of CPU_MICROBLAZE
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>
This commit is contained in:
parent
93bb62abaf
commit
7c31107249
2 changed files with 2 additions and 2 deletions
|
@ -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},
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue