diff options
author | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-09-03 20:06:13 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-09-03 22:59:13 +0200 |
commit | 7e6c8c1981b675c90820f55e5c03b83ae4ac3a43 (patch) | |
tree | f8fc1517c5024a589581371f0baa81660b1c508f /drivers/media/usb/em28xx/em28xx-video.c | |
parent | [media] stv0900_core: don't allocate a temporary var (diff) | |
download | linux-7e6c8c1981b675c90820f55e5c03b83ae4ac3a43.tar.xz linux-7e6c8c1981b675c90820f55e5c03b83ae4ac3a43.zip |
[media] em28xx: 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>
Diffstat (limited to 'drivers/media/usb/em28xx/em28xx-video.c')
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-video.c b/drivers/media/usb/em28xx/em28xx-video.c index f6cf99fa30b2..3642438bc7d4 100644 --- a/drivers/media/usb/em28xx/em28xx-video.c +++ b/drivers/media/usb/em28xx/em28xx-video.c @@ -721,7 +721,7 @@ static inline void process_frame_data_em25xx(struct em28xx *dev, struct em28xx_buffer *buf = dev->usb_ctl.vid_buf; struct em28xx_dmaqueue *dmaq = &dev->vidq; struct em28xx_v4l2 *v4l2 = dev->v4l2; - bool frame_end = 0; + bool frame_end = false; /* Check for header */ /* NOTE: at least with bulk transfers, only the first packet @@ -2308,7 +2308,7 @@ static int em28xx_v4l2_init(struct em28xx *dev) v4l2->v4l2_dev.ctrl_handler = hdl; if (dev->board.is_webcam) - v4l2->progressive = 1; + v4l2->progressive = true; /* * Default format, used for tvp5150 or saa711x output formats |