diff options
author | Hans de Goede <hdegoede@redhat.com> | 2012-06-30 10:53:36 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-07-30 23:38:40 +0200 |
commit | 12891794046c56957008e59a21da1b4572068430 (patch) | |
tree | c9e9646a1594267a2cf6f7674c6f12f566eebd65 | |
parent | [media] gspca: Remove bogus JPEG quality controls from various sub-drivers (diff) | |
download | linux-12891794046c56957008e59a21da1b4572068430.tar.xz linux-12891794046c56957008e59a21da1b4572068430.zip |
[media] gspca_benq: Remove empty ctrls array
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/video/gspca/benq.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/media/video/gspca/benq.c b/drivers/media/video/gspca/benq.c index 9769f17915c0..f03314869622 100644 --- a/drivers/media/video/gspca/benq.c +++ b/drivers/media/video/gspca/benq.c @@ -33,10 +33,6 @@ struct sd { struct gspca_dev gspca_dev; /* !! must be the first item */ }; -/* V4L2 controls supported by the driver */ -static const struct ctrl sd_ctrls[] = { -}; - static const struct v4l2_pix_format vga_mode[] = { {320, 240, V4L2_PIX_FMT_JPEG, V4L2_FIELD_NONE, .bytesperline = 320, @@ -256,8 +252,6 @@ static void sd_isoc_irq(struct urb *urb) /* sub-driver description */ static const struct sd_desc sd_desc = { .name = MODULE_NAME, - .ctrls = sd_ctrls, - .nctrls = ARRAY_SIZE(sd_ctrls), .config = sd_config, .init = sd_init, .start = sd_start, |