You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
815 B
26 lines
815 B
From 1e4a8437c9caee068f53cbaae00d1d76a8db21e5 Mon Sep 17 00:00:00 2001
|
|
From: Dmitry Perchanov <dmitry.perchanov@intel.com>
|
|
Date: Wed, 24 May 2023 19:52:05 +0300
|
|
Subject: [PATCH] Bug fix for inclomplete PowerLineFrequency enumeration map
|
|
|
|
Signed-off-by: Dmitry Perchanov <dmitry.perchanov@intel.com>
|
|
---
|
|
drivers/media/usb/uvc/uvc_ctrl.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/media/usb/uvc/uvc_ctrl.c b/drivers/media/usb/uvc/uvc_ctrl.c
|
|
index b3dde9849..63b9bf310 100644
|
|
--- a/drivers/media/usb/uvc/uvc_ctrl.c
|
|
+++ b/drivers/media/usb/uvc/uvc_ctrl.c
|
|
@@ -361,6 +361,7 @@ static const struct uvc_menu_info power_line_frequency_controls[] = {
|
|
{ 0, "Disabled" },
|
|
{ 1, "50 Hz" },
|
|
{ 2, "60 Hz" },
|
|
+ { 3, "Auto" },
|
|
};
|
|
|
|
static const struct uvc_menu_info exposure_auto_controls[] = {
|
|
--
|
|
2.34.1
|
|
|