aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJean-Francois Moine <moinejf@free.fr>2009-09-02 05:04:14 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-09-12 11:20:08 -0400
commit760f2713cb09c532154d41ae6f2d32e787580758 (patch)
tree8413b3f51e97fdaafc29e9773401d6b4e4c0d725 /drivers
parent2e1794b51b3917d09412a118711ef994ea72a403 (diff)
V4L/DVB (12693): gspca - sunplus: The brightness is signed.
Signed-off-by: Jean-Francois Moine <moinejf@free.fr> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/media/video/gspca/sunplus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/gspca/sunplus.c b/drivers/media/video/gspca/sunplus.c
index ffbe3f625dd..aa8f995ce04 100644
--- a/drivers/media/video/gspca/sunplus.c
+++ b/drivers/media/video/gspca/sunplus.c
@@ -32,7 +32,7 @@ MODULE_LICENSE("GPL");
32struct sd { 32struct sd {
33 struct gspca_dev gspca_dev; /* !! must be the first item */ 33 struct gspca_dev gspca_dev; /* !! must be the first item */
34 34
35 u8 brightness; 35 s8 brightness;
36 u8 contrast; 36 u8 contrast;
37 u8 colors; 37 u8 colors;
38 u8 autogain; 38 u8 autogain;
@@ -73,8 +73,8 @@ static struct ctrl sd_ctrls[] = {
73 .id = V4L2_CID_BRIGHTNESS, 73 .id = V4L2_CID_BRIGHTNESS,
74 .type = V4L2_CTRL_TYPE_INTEGER, 74 .type = V4L2_CTRL_TYPE_INTEGER,
75 .name = "Brightness", 75 .name = "Brightness",
76 .minimum = 0, 76 .minimum = -128,
77 .maximum = 0xff, 77 .maximum = 127,
78 .step = 1, 78 .step = 1,
79#define BRIGHTNESS_DEF 0 79#define BRIGHTNESS_DEF 0
80 .default_value = BRIGHTNESS_DEF, 80 .default_value = BRIGHTNESS_DEF,