aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2013-03-22 05:51:06 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-22 08:46:48 -0400
commit9dc033f1eaea01ed6701b16622744c4d57f108b7 (patch)
tree90807460cb79be64ff24c160d48bda2ecb95fa11
parent39ed1267d971d648886454b895852e46655bdcb6 (diff)
[media] m5602_ov7660: return error at ov7660_init()
It used to be a code that returns arror at ov7660_init. However, this was removed by changeset c84e412f: @@ -231,33 +116,40 @@ int ov7660_init(struct sd *sd) if (dump_sensor) ov7660_dump_registers(sd); - err = ov7660_set_gain(&sd->gspca_dev, sensor_settings[GAIN_IDX]); - if (err < 0) - return err; + return 0; +} - err = ov7660_set_auto_white_balance(&sd->gspca_dev, - sensor_settings[AUTO_WHITE_BALANCE_IDX]); - if (err < 0) - return err; As complained by gcc: drivers/media/usb/gspca/m5602/m5602_ov7660.c: In function 'ov7660_init': drivers/media/usb/gspca/m5602/m5602_ov7660.c:99:9: warning: variable 'err' set but not used [-Wunused-but-set-variable] It should be noticed that the original error code was crappy, as it wasn't returning any error if sensor init fails. Fix it by returning an error if the sensor can't be initialized. Cc: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/usb/gspca/m5602/m5602_ov7660.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/usb/gspca/m5602/m5602_ov7660.c b/drivers/media/usb/gspca/m5602/m5602_ov7660.c
index 4ac78893cc5f..64b3b03a9141 100644
--- a/drivers/media/usb/gspca/m5602/m5602_ov7660.c
+++ b/drivers/media/usb/gspca/m5602/m5602_ov7660.c
@@ -96,7 +96,7 @@ sensor_found:
96 96
97int ov7660_init(struct sd *sd) 97int ov7660_init(struct sd *sd)
98{ 98{
99 int i, err = 0; 99 int i, err;
100 100
101 /* Init the sensor */ 101 /* Init the sensor */
102 for (i = 0; i < ARRAY_SIZE(init_ov7660); i++) { 102 for (i = 0; i < ARRAY_SIZE(init_ov7660); i++) {
@@ -111,6 +111,8 @@ int ov7660_init(struct sd *sd)
111 err = m5602_write_sensor(sd, 111 err = m5602_write_sensor(sd,
112 init_ov7660[i][1], data, 1); 112 init_ov7660[i][1], data, 1);
113 } 113 }
114 if (err < 0)
115 return err;
114 } 116 }
115 117
116 if (dump_sensor) 118 if (dump_sensor)