diff options
author | Erik Andrén <erik.andren@gmail.com> | 2009-02-02 20:08:06 +0100 |
---|---|---|
committer | Erik Andrén <erik.andren@gmail.com> | 2009-02-02 20:08:06 +0100 |
commit | c2d3fb9ba38411d60945585f92142052c98856b5 (patch) | |
tree | e931ef4caebbac767a6c6668394ff8e6e3617eda /linux/drivers/media/video/gspca/m5602/m5602_ov9650.c | |
parent | 1b9286232ad7149cdc2b744f376894f66f011289 (diff) | |
download | mediapointer-dvb-s2-c2d3fb9ba38411d60945585f92142052c98856b5.tar.gz mediapointer-dvb-s2-c2d3fb9ba38411d60945585f92142052c98856b5.tar.bz2 |
gspca - m5602-ov9650: Add missing v4l2 ctrl ids
From: Erik Andrén <erik.andren@gmail.com>
Red and blue balance missed their id fields
Priority: normal
Signed-off-by: Erik Andrén <erik.andren@gmail.com>
Diffstat (limited to 'linux/drivers/media/video/gspca/m5602/m5602_ov9650.c')
-rw-r--r-- | linux/drivers/media/video/gspca/m5602/m5602_ov9650.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/gspca/m5602/m5602_ov9650.c b/linux/drivers/media/video/gspca/m5602/m5602_ov9650.c index 83fdff268..5378b8d40 100644 --- a/linux/drivers/media/video/gspca/m5602/m5602_ov9650.c +++ b/linux/drivers/media/video/gspca/m5602/m5602_ov9650.c @@ -133,6 +133,7 @@ static const struct ctrl ov9650_ctrls[] = { #define RED_BALANCE_IDX 2 { { + .id = V4L2_CID_RED_BALANCE, .type = V4L2_CTRL_TYPE_INTEGER, .name = "red balance", .minimum = 0x00, @@ -147,6 +148,7 @@ static const struct ctrl ov9650_ctrls[] = { #define BLUE_BALANCE_IDX 3 { { + .id = V4L2_CID_BLUE_BALANCE, .type = V4L2_CTRL_TYPE_INTEGER, .name = "blue balance", .minimum = 0x00, |