On Fri, Apr 6, 2018 at 4:15 PM, Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxxxxx> wrote: > Em Fri, 6 Apr 2018 11:51:16 +0200 > Arnd Bergmann <arnd@xxxxxxxx> escreveu: > >> On Fri, Apr 6, 2018 at 11:47 AM, Mauro Carvalho Chehab >> <mchehab@xxxxxxxxxxxxxxxx> wrote: >> >> > [PATCH] media: fsl-viu: allow building it with COMPILE_TEST >> > >> > There aren't many things that would be needed to allow it >> > to build with compile test. >> > >> > Add the needed bits. >> > >> > Signed-off-by: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxxxxx> >> >> Reviewed-by: Arnd Bergmann <arnd@xxxxxxxx> > > Actually, in order to avoid warnings with smatch, the COMPILE_TEST > macros should be declared as: > > +#define out_be32(v, a) iowrite32be(a, (void __iomem *)v) > +#define in_be32(a) ioread32be((void __iomem *)a) I would just add the correct annotations, I think they've always been missing. 2 patches coming in a few minutes. Arnd