summaryrefslogtreecommitdiffstats
path: root/drivers/media/video/m5mols
diff options
context:
space:
mode:
authorSylwester Nawrocki2011-11-23 14:19:54 +0100
committerMauro Carvalho Chehab2011-12-30 17:39:13 +0100
commit12ba77ee7b393dacfd8f71aaa9be8184b81e39ea (patch)
tree9bb10f885cc5b8f5a6f7e2e6af864136026af665 /drivers/media/video/m5mols
parent[media] m5mols: Do not reset the configured pixel format when unexpected (diff)
downloadkernel-qcow2-linux-12ba77ee7b393dacfd8f71aaa9be8184b81e39ea.tar.gz
kernel-qcow2-linux-12ba77ee7b393dacfd8f71aaa9be8184b81e39ea.tar.xz
kernel-qcow2-linux-12ba77ee7b393dacfd8f71aaa9be8184b81e39ea.zip
[media] m5mols: Change auto exposure control default value to AUTO
Enabling automatic exposure yields better image quality. With this setting the anti-flicker algorithm is also enabled in automatic frequency detection mode which effectively eliminates distortion from fluctuations of light intensity at power line frequency. Acked-by: HeungJun Kim <riverful.kim@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/m5mols')
-rw-r--r--drivers/media/video/m5mols/m5mols_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/m5mols/m5mols_core.c b/drivers/media/video/m5mols/m5mols_core.c
index 12f223f3d0fd..e8a971fa3726 100644
--- a/drivers/media/video/m5mols/m5mols_core.c
+++ b/drivers/media/video/m5mols/m5mols_core.c
@@ -834,7 +834,7 @@ static int m5mols_init_controls(struct m5mols_info *info)
4, (1 << V4L2_COLORFX_BW), V4L2_COLORFX_NONE);
info->autoexposure = v4l2_ctrl_new_std_menu(&info->handle,
&m5mols_ctrl_ops, V4L2_CID_EXPOSURE_AUTO,
- 1, 0, V4L2_EXPOSURE_MANUAL);
+ 1, 0, V4L2_EXPOSURE_AUTO);
sd->ctrl_handler = &info->handle;
if (info->handle.error) {