From: Hans Verkuil Date: Thu, 12 Jul 2012 15:06:24 +0000 (-0300) Subject: [media] Use a named union in struct v4l2_ioctl_info X-Git-Tag: v3.6-rc1~28^2~16 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26ddcbcca3057125a0e5f3901b06439a20869640;p=pandora-kernel.git [media] Use a named union in struct v4l2_ioctl_info Hi Mauro, struct v4l2_ioctl_info uses an anonymous union, which is initialized in the v4l2_ioctls table. Unfortunately gcc < 4.6 uses a non-standard syntax for that, so trying to compile v4l2-ioctl.c with an older gcc will fail. It is possible to work around this by testing the gcc version, but in this case it is easier to make the union named since it is used in only a few places. Signed-off-by: Hans Verkuil Reported-by: Randy Dunlap Acked-by: Randy Dunlap Signed-off-by: Mauro Carvalho Chehab --- Reading git-diff-tree failed