Re: [PATCH] ARM: PXA: Fix build error for PXA93x
Ethan Nelson-Moore <[email protected]>
| Newsgroups | org.kernel.vger.linux-mmc,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <CADkSEUiBRBb-UGKraUkiXaMbSe6Ng0YbqY-FjXnjPoXsf5=r5Q@mail.gmail.com> |
On Thu, Aug 6, 2026 at 4:51 AM Ulf Hansson <[email protected]> wrote: > > From: Ulf Hansson <[email protected]> > > Add a missing semicolon to fix the build error for PXA93x. > > Reported-by: kernel test robot <[email protected]> > Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ > Fixes: ab9c44bbf6d7 ("ARM: PXA: remove remnants of PXA93x support") > Cc: Ethan Nelson-Moore <[email protected]> > Signed-off-by: Ulf Hansson <[email protected]> > --- > 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