diff options
author | hans@rhel5-devel.localdomain <hans@rhel5-devel.localdomain> | 2009-06-18 19:31:36 +0200 |
---|---|---|
committer | hans@rhel5-devel.localdomain <hans@rhel5-devel.localdomain> | 2009-06-18 19:31:36 +0200 |
commit | b6b5cafa2594a09626f8a3a4d23bbb0f1b712941 (patch) | |
tree | 9bfba54f335709edad1b4719701411d952674753 /linux/drivers/media/video/gspca | |
parent | 5e6bb851c631e3940d0d15d290f0a1eac1081d82 (diff) | |
download | mediapointer-dvb-s2-b6b5cafa2594a09626f8a3a4d23bbb0f1b712941.tar.gz mediapointer-dvb-s2-b6b5cafa2594a09626f8a3a4d23bbb0f1b712941.tar.bz2 |
gspca_sonixj: Name saturation control saturation, not color
From: Hans de Goede <hdegoede@redhat.com>
Name saturation control saturation, not color and make the default
less saturated (the old default was overdoing it).
Priority: normal
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'linux/drivers/media/video/gspca')
-rw-r--r-- | linux/drivers/media/video/gspca/sonixj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/gspca/sonixj.c b/linux/drivers/media/video/gspca/sonixj.c index f47986a1c..a2fb94eb7 100644 --- a/linux/drivers/media/video/gspca/sonixj.c +++ b/linux/drivers/media/video/gspca/sonixj.c @@ -138,11 +138,11 @@ static struct ctrl sd_ctrls[] = { { .id = V4L2_CID_SATURATION, .type = V4L2_CTRL_TYPE_INTEGER, - .name = "Color", + .name = "Saturation", .minimum = 0, .maximum = 40, .step = 1, -#define COLOR_DEF 32 +#define COLOR_DEF 25 .default_value = COLOR_DEF, }, .set = sd_setcolors, |