From: Madalin Bucur Date: Wed, 29 Apr 2020 09:16:38 +0000 (+0300) Subject: powerpc: mpc85xx: fix unused variable warning X-Git-Tag: v2020.07-rc4~2^2~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=03fe5d5116f3793f4d92a15e6d90bb96f0ee0aaf;p=oweals%2Fu-boot.git powerpc: mpc85xx: fix unused variable warning Fix unused variable warning when CONFIG_QE is not set. Signed-off-by: Madalin Bucur Reviewed-by: Priyanka Jain --- diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c index 4bca2671d5..5a409e7a11 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c @@ -1028,13 +1028,13 @@ void arch_preboot_os(void) void cpu_secondary_init_r(void) { +#ifdef CONFIG_QE #ifdef CONFIG_U_QE uint qe_base = CONFIG_SYS_IMMR + 0x00140000; /* QE immr base */ -#elif defined CONFIG_QE +#else uint qe_base = CONFIG_SYS_IMMR + 0x00080000; /* QE immr base */ #endif -#ifdef CONFIG_QE qe_init(qe_base); qe_reset(); #endif