linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: build warning in Linus' tree tree
@ 2018-10-31 21:28 Stephen Rothwell
  2018-11-01  2:38 ` Mauro Carvalho Chehab
  2018-11-02 10:30 ` Mauro Carvalho Chehab
  0 siblings, 2 replies; 4+ messages in thread
From: Stephen Rothwell @ 2018-10-31 21:28 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List, Paul Kocialkowski

[-- Attachment #1: Type: text/plain, Size: 358 bytes --]

Hi all,

Building Linus' tree, today's linux-next build (x86_64 allmodconfig)
produced this warning:

./usr/include/linux/v4l2-controls.h:1105: found __[us]{8,16,32,64} type without #include <linux/types.h>

Introduced by commit

  c27bb30e7b6d ("media: v4l: Add definitions for MPEG-2 slice format and metadata")

-- 
Cheers,
Stephen Rothwell

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: linux-next: build warning in Linus' tree tree
  2018-10-31 21:28 linux-next: build warning in Linus' tree tree Stephen Rothwell
@ 2018-11-01  2:38 ` Mauro Carvalho Chehab
  2018-11-02 10:30 ` Mauro Carvalho Chehab
  1 sibling, 0 replies; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2018-11-01  2:38 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List, Paul Kocialkowski

Em Thu, 1 Nov 2018 08:28:20 +1100
Stephen Rothwell <sfr@canb.auug.org.au> escreveu:

> Hi all,
> 
> Building Linus' tree, today's linux-next build (x86_64 allmodconfig)
> produced this warning:
> 
> ./usr/include/linux/v4l2-controls.h:1105: found __[us]{8,16,32,64} type without #include <linux/types.h>
> 
> Introduced by commit
> 
>   c27bb30e7b6d ("media: v4l: Add definitions for MPEG-2 slice format and metadata")
> 

Somehow, I missed this warning. I'll send soon a fix for it.


Thanks,
Mauro

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: linux-next: build warning in Linus' tree tree
  2018-10-31 21:28 linux-next: build warning in Linus' tree tree Stephen Rothwell
  2018-11-01  2:38 ` Mauro Carvalho Chehab
@ 2018-11-02 10:30 ` Mauro Carvalho Chehab
  2018-11-02 10:34   ` Mauro Carvalho Chehab
  1 sibling, 1 reply; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2018-11-02 10:30 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List, Paul Kocialkowski

Hi Stephen,

Em Thu, 1 Nov 2018 08:28:20 +1100
Stephen Rothwell <sfr@canb.auug.org.au> escreveu:

> Hi all,
> 
> Building Linus' tree, today's linux-next build (x86_64 allmodconfig)
> produced this warning:
> 
> ./usr/include/linux/v4l2-controls.h:1105: found __[us]{8,16,32,64} type without #include <linux/types.h>
> 
> Introduced by commit
> 
>   c27bb30e7b6d ("media: v4l: Add definitions for MPEG-2 slice format and metadata")
> 

How are you building it? Here this warning doesn't pop up.

I'm using here:

	gcc (GCC) 8.2.1 20181011 (Red Hat 8.2.1-4)

And I'm using:

$ make ARCH=x86_64  CF=-D__CHECK_ENDIAN__ CONFIG_DEBUG_SECTION_MISMATCH=y W=1 CHECK='' M=drivers/media

(it is not a full build, but it should be enough to get warnings at the
media subsystem)

Thanks,
Mauro

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: linux-next: build warning in Linus' tree tree
  2018-11-02 10:30 ` Mauro Carvalho Chehab
@ 2018-11-02 10:34   ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2018-11-02 10:34 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Linux-Next Mailing List, Linux Kernel Mailing List, Paul Kocialkowski

Em Fri, 2 Nov 2018 07:30:16 -0300
Mauro Carvalho Chehab <mchehab+samsung@kernel.org> escreveu:

> Hi Stephen,
> 
> Em Thu, 1 Nov 2018 08:28:20 +1100
> Stephen Rothwell <sfr@canb.auug.org.au> escreveu:
> 
> > Hi all,
> > 
> > Building Linus' tree, today's linux-next build (x86_64 allmodconfig)
> > produced this warning:
> > 
> > ./usr/include/linux/v4l2-controls.h:1105: found __[us]{8,16,32,64} type without #include <linux/types.h>
> > 
> > Introduced by commit
> > 
> >   c27bb30e7b6d ("media: v4l: Add definitions for MPEG-2 slice format and metadata")
> > 
> 
> How are you building it? Here this warning doesn't pop up.
> 
> I'm using here:
> 
> 	gcc (GCC) 8.2.1 20181011 (Red Hat 8.2.1-4)
> 
> And I'm using:
> 
> $ make ARCH=x86_64  CF=-D__CHECK_ENDIAN__ CONFIG_DEBUG_SECTION_MISMATCH=y W=1 CHECK='' M=drivers/media
> 
> (it is not a full build, but it should be enough to get warnings at the
> media subsystem)

Nevermind. Got it using:

$ make headers_check


> 
> Thanks,
> Mauro



Thanks,
Mauro

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-11-02 10:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-31 21:28 linux-next: build warning in Linus' tree tree Stephen Rothwell
2018-11-01  2:38 ` Mauro Carvalho Chehab
2018-11-02 10:30 ` Mauro Carvalho Chehab
2018-11-02 10:34   ` Mauro Carvalho Chehab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).