diff options
author | Laurent Pinchart <laurent.pinchart@skynet.be> | 2008-07-26 10:42:29 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-26 12:18:24 -0400 |
commit | 90ac5ea37f91e38d798c5e355232ce7f9c2a24d4 (patch) | |
tree | 93a35123e26f591a2642ddce1dc04b2140416ba8 /drivers/media/video/uvc/uvc_ctrl.c | |
parent | d53687d1d22c3204394658a31654de2f1efb0e8f (diff) |
V4L/DVB (8497): uvcvideo: Make the auto-exposure menu control V4L2 compliant
V4L2 and UVC enumerate the auto-exposure settings in a different order. This
patch fixes the auto-exposure menu declaration to match the V4L2 spec.
Signed-off-by: Laurent Pinchart <laurent.pinchart@skynet.be>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/uvc/uvc_ctrl.c')
-rw-r--r-- | drivers/media/video/uvc/uvc_ctrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/uvc/uvc_ctrl.c b/drivers/media/video/uvc/uvc_ctrl.c index 3ae95512666f..f54d06a8af92 100644 --- a/drivers/media/video/uvc/uvc_ctrl.c +++ b/drivers/media/video/uvc/uvc_ctrl.c | |||
@@ -195,8 +195,8 @@ static struct uvc_menu_info power_line_frequency_controls[] = { | |||
195 | }; | 195 | }; |
196 | 196 | ||
197 | static struct uvc_menu_info exposure_auto_controls[] = { | 197 | static struct uvc_menu_info exposure_auto_controls[] = { |
198 | { 1, "Manual Mode" }, | ||
199 | { 2, "Auto Mode" }, | 198 | { 2, "Auto Mode" }, |
199 | { 1, "Manual Mode" }, | ||
200 | { 4, "Shutter Priority Mode" }, | 200 | { 4, "Shutter Priority Mode" }, |
201 | { 8, "Aperture Priority Mode" }, | 201 | { 8, "Aperture Priority Mode" }, |
202 | }; | 202 | }; |