diff options
| author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2012-07-24 12:12:07 -0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-15 07:52:32 -0700 |
| commit | e14498e734869324747c5c7f039549566885f76f (patch) | |
| tree | a74564253fd592bf020367c68380fa4520f359f6 /drivers | |
| parent | bd2c6675ad6c33e2130860ab513466bd9a4069e3 (diff) | |
| download | linux-e14498e734869324747c5c7f039549566885f76f.tar.gz linux-e14498e734869324747c5c7f039549566885f76f.tar.bz2 linux-e14498e734869324747c5c7f039549566885f76f.zip | |
media: m5mols: Correct reported ISO values
commit 6126b912c84240692e26c1b820a7097610eddf34 upstream.
The V4L2_CID_ISO_SENSITIVITY control menu values should be
standard ISO values multiplied by 1000. Multiply all menu
items by 1000 so ISO is properly reported as 50...3200 range.
This applies to kernels 3.5+.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/media/video/m5mols/m5mols_controls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/m5mols/m5mols_controls.c b/drivers/media/video/m5mols/m5mols_controls.c index 392a028730e2..fdbc205a2969 100644 --- a/drivers/media/video/m5mols/m5mols_controls.c +++ b/drivers/media/video/m5mols/m5mols_controls.c @@ -527,8 +527,8 @@ static const struct v4l2_ctrl_ops m5mols_ctrl_ops = { /* Supported manual ISO values */ static const s64 iso_qmenu[] = { - /* AE_ISO: 0x01...0x07 */ - 50, 100, 200, 400, 800, 1600, 3200 + /* AE_ISO: 0x01...0x07 (ISO: 50...3200) */ + 50000, 100000, 200000, 400000, 800000, 1600000, 3200000 }; /* Supported Exposure Bias values, -2.0EV...+2.0EV */ |
