[PATCH] ARM: PXA: Fix build error for PXA93x

From: Ulf Hansson

Date: Thu Aug 06 2026 - 07:51:44 EST


From: Ulf Hansson <ulfh@xxxxxxxxxx>

Add a missing semicolon to fix the build error for PXA93x.

Reported-by: kernel test robot <lkp@xxxxxxxxx>
Closes: https://lore.kernel.org/oe-kbuild-all/202607301822.cl0lEkQt-lkp@xxxxxxxxx/
Fixes: ab9c44bbf6d7 ("ARM: PXA: remove remnants of PXA93x support")
Cc: Ethan Nelson-Moore <enelsonmoore@xxxxxxxxx>
Signed-off-by: Ulf Hansson <ulfh@xxxxxxxxxx>
---
include/linux/soc/pxa/cpu.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/soc/pxa/cpu.h b/include/linux/soc/pxa/cpu.h
index 38bacdae684f..c5b275a80854 100644
--- a/include/linux/soc/pxa/cpu.h
+++ b/include/linux/soc/pxa/cpu.h
@@ -177,7 +177,7 @@
({ \
__cpu_is_pxa300(id) \
|| __cpu_is_pxa310(id) \
- || __cpu_is_pxa320(id) \
+ || __cpu_is_pxa320(id); \
})
#else
#define __cpu_is_pxa3xx(id) (0)
--
2.43.0