media: fix usage of whitespaces and on indentation
On several places, whitespaces are being used for indentation, or even at the end of the line. Fix them. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
@@ -32,7 +32,7 @@ int gspca_expo_autogain(
|
||||
int i, steps, retval = 0;
|
||||
|
||||
if (v4l2_ctrl_g_ctrl(gspca_dev->autogain) == 0)
|
||||
return 0;
|
||||
return 0;
|
||||
|
||||
orig_gain = gain = v4l2_ctrl_g_ctrl(gspca_dev->gain);
|
||||
orig_exposure = exposure = v4l2_ctrl_g_ctrl(gspca_dev->exposure);
|
||||
@@ -75,11 +75,11 @@ int gspca_expo_autogain(
|
||||
}
|
||||
|
||||
if (gain != orig_gain) {
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->gain, gain);
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->gain, gain);
|
||||
retval = 1;
|
||||
}
|
||||
if (exposure != orig_exposure) {
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->exposure, exposure);
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->exposure, exposure);
|
||||
retval = 1;
|
||||
}
|
||||
|
||||
@@ -112,7 +112,7 @@ int gspca_coarse_grained_expo_autogain(
|
||||
int steps, retval = 0;
|
||||
|
||||
if (v4l2_ctrl_g_ctrl(gspca_dev->autogain) == 0)
|
||||
return 0;
|
||||
return 0;
|
||||
|
||||
orig_gain = gain = v4l2_ctrl_g_ctrl(gspca_dev->gain);
|
||||
orig_exposure = exposure = v4l2_ctrl_g_ctrl(gspca_dev->exposure);
|
||||
@@ -158,11 +158,11 @@ int gspca_coarse_grained_expo_autogain(
|
||||
}
|
||||
|
||||
if (gain != orig_gain) {
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->gain, gain);
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->gain, gain);
|
||||
retval = 1;
|
||||
}
|
||||
if (exposure != orig_exposure) {
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->exposure, exposure);
|
||||
v4l2_ctrl_s_ctrl(gspca_dev->exposure, exposure);
|
||||
retval = 1;
|
||||
}
|
||||
|
||||
|
@@ -543,7 +543,7 @@ static int do_command(struct gspca_dev *gspca_dev, u16 command,
|
||||
input_report_key(gspca_dev->input_dev, KEY_CAMERA, a);
|
||||
input_sync(gspca_dev->input_dev);
|
||||
#endif
|
||||
sd->params.qx3.button = a;
|
||||
sd->params.qx3.button = a;
|
||||
}
|
||||
if (sd->params.qx3.button) {
|
||||
/* button pressed - unlock the latch */
|
||||
|
@@ -59,7 +59,7 @@
|
||||
|
||||
/* Refers to the CIF 352x288 and QCIF 176x144 */
|
||||
/* 1: 288 lines, 2: 144 lines */
|
||||
#define STV_Y_CTRL 0x15c3
|
||||
#define STV_Y_CTRL 0x15c3
|
||||
|
||||
#define STV_RESET 0x1620
|
||||
|
||||
|
Reference in New Issue
Block a user