summaryrefslogtreecommitdiff
path: root/include/linux/soc
diff options
context:
space:
mode:
authorUlf Hansson <ulfh@kernel.org>2026-08-06 13:51:12 +0200
committerUlf Hansson <ulfh@kernel.org>2026-08-06 13:54:16 +0200
commit35e689fb79dcbaa8d69cc4a58a7ad4d0d7346e4a (patch)
treeb84666ca30bd959dcef9b0e14ba0dacd7cd8e01c /include/linux/soc
parentfae38c1b0b6e06d87efb2fc583e15e7846294410 (diff)
downloadlinux-next-35e689fb79dcbaa8d69cc4a58a7ad4d0d7346e4a.tar.gz
linux-next-35e689fb79dcbaa8d69cc4a58a7ad4d0d7346e4a.zip
ARM: PXA: Fix build error for PXA93x
Add a missing semicolon to fix the build error for PXA93x. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202607301822.cl0lEkQt-lkp@intel.com/ Fixes: ab9c44bbf6d7 ("ARM: PXA: remove remnants of PXA93x support") Cc: Ethan Nelson-Moore <enelsonmoore@gmail.com> Signed-off-by: Ulf Hansson <ulfh@kernel.org>
Diffstat (limited to 'include/linux/soc')
-rw-r--r--include/linux/soc/pxa/cpu.h2
1 files changed, 1 insertions, 1 deletions
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)