Re: [PATCH] ARM: PXA: Fix build error for PXA93x
From: Ethan Nelson-Moore
Date: Fri Aug 14 2026 - 23:14:12 EST
On Thu, Aug 6, 2026 at 4:51 AM Ulf Hansson <ulf.hansson@xxxxxxxxxxxxxxxx> wrote:
>
> 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
>
Hi, Ulf,
That's embarrassing. Thanks for catching it.
Ethan