V4L/DVB (4046): Trivial videodev2.h patch
authorDavid Mosberger-Tang <David.Mosberger@acm.org>
Fri, 26 May 2006 13:28:13 +0000 (10:28 -0300)
committerMauro Carvalho Chehab <mchehab@infradead.org>
Sun, 25 Jun 2006 05:05:00 +0000 (02:05 -0300)
commitc003d467bd71a7da22554e0d812a646ab58abea5
tree2e66ab6cd7cce4a741d6ccfbc1d964b8d141f187
parentdea74869f3c62b0b7addd67017b22b394e942aac
V4L/DVB (4046): Trivial videodev2.h patch

linux/videodev2.h uses types such as __u8 but it fails to include
<linux/types.h>.  Within the kernel, that's not a problem because
<linux/time.h> already includes <linux/types.h>.  However, there are
user apps that try to include videodev2.h (e.g., ekiga) and at least
on ia64, it causes compilation failures since <linux/types.h> doesn't
get included for any other reason, leaving __u8 etc. undefined.  The
attached patch fixes the problem for me.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
include/linux/videodev2.h