diff options
author | Arnd Bergmann | 2022-03-01 11:16:57 +0100 |
---|---|---|
committer | Arnd Bergmann | 2022-03-01 11:16:57 +0100 |
commit | d9bdba07824c565e482741ac201a6e640cd0a11b (patch) | |
tree | e2d191b6ab292288c69d0a66555e66f810cf3516 /arch/arm | |
parent | e6e6479c27aa22d11ff7109125dd5ec9ef276de8 (diff) |
ARM: PXA: fix up decompressor code
The earlier removal of two boards caused a build regression,
fix it by removing the extraneous '||'.
Reported-by: kernel test robot <lkp@intel.com>
Fixes: 28f74201e37c ("ARM: pxa: remove Intel Imote2 and Stargate 2 boards")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-pxa/include/mach/uncompress.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/include/mach/uncompress.h b/arch/arm/mach-pxa/include/mach/uncompress.h index f71a8dafa6e0..1ed629e38ce6 100644 --- a/arch/arm/mach-pxa/include/mach/uncompress.h +++ b/arch/arm/mach-pxa/include/mach/uncompress.h @@ -59,7 +59,7 @@ static inline void arch_decomp_setup(void) uart_is_pxa = 1; if (machine_is_littleton() || machine_is_csb726() || - || machine_is_cm_x300() || machine_is_balloon3()) + machine_is_cm_x300() || machine_is_balloon3()) uart_base = STUART_BASE; if (machine_is_arcom_zeus()) { |