mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-23 11:04:44 +08:00
[media] smiapp-core: use true/false for boolean vars
Instead of using 0 or 1 for boolean, use the true/false defines. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
79a5ee7882
commit
06e916b75a
@ -1312,7 +1312,7 @@ static void smiapp_power_off(struct smiapp_sensor *sensor)
|
|||||||
clk_disable_unprepare(sensor->ext_clk);
|
clk_disable_unprepare(sensor->ext_clk);
|
||||||
usleep_range(5000, 5000);
|
usleep_range(5000, 5000);
|
||||||
regulator_disable(sensor->vana);
|
regulator_disable(sensor->vana);
|
||||||
sensor->streaming = 0;
|
sensor->streaming = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int smiapp_set_power(struct v4l2_subdev *subdev, int on)
|
static int smiapp_set_power(struct v4l2_subdev *subdev, int on)
|
||||||
@ -1509,13 +1509,13 @@ static int smiapp_set_stream(struct v4l2_subdev *subdev, int enable)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (enable) {
|
if (enable) {
|
||||||
sensor->streaming = 1;
|
sensor->streaming = true;
|
||||||
rval = smiapp_start_streaming(sensor);
|
rval = smiapp_start_streaming(sensor);
|
||||||
if (rval < 0)
|
if (rval < 0)
|
||||||
sensor->streaming = 0;
|
sensor->streaming = false;
|
||||||
} else {
|
} else {
|
||||||
rval = smiapp_stop_streaming(sensor);
|
rval = smiapp_stop_streaming(sensor);
|
||||||
sensor->streaming = 0;
|
sensor->streaming = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return rval;
|
return rval;
|
||||||
|
Loading…
Reference in New Issue
Block a user