diff options
author | Joe Perches <joe@perches.com> | 2009-07-02 14:57:09 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-09-12 11:17:23 -0400 |
commit | 1ebcad77078a10571eb194b53cb65006d3daf3c4 (patch) | |
tree | a4e400c7ab789a4cc302dc866d3fc3123f438b28 /drivers/media/video/cx231xx | |
parent | 32a60955fb6312f19ea4856e66b894bfb6c4e949 (diff) |
V4L/DVB (12197): Remove unnecessary semicolons
Cc: Patrick Boettcher <patrick.boettcher@desy.de>
Cc: Steven Toth <stoth@linuxtv.org>
Cc: Igor M. Liplianin <liplianin@netup.ru>
Cc: Srinivasa Deevi <srinivasa.deevi@conexant.com>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx231xx')
-rw-r--r-- | drivers/media/video/cx231xx/cx231xx-video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/cx231xx/cx231xx-video.c b/drivers/media/video/cx231xx/cx231xx-video.c index 609bae6098d3..36503725d973 100644 --- a/drivers/media/video/cx231xx/cx231xx-video.c +++ b/drivers/media/video/cx231xx/cx231xx-video.c | |||
@@ -923,8 +923,8 @@ static int vidioc_g_fmt_vid_cap(struct file *file, void *priv, | |||
923 | 923 | ||
924 | f->fmt.pix.width = dev->width; | 924 | f->fmt.pix.width = dev->width; |
925 | f->fmt.pix.height = dev->height; | 925 | f->fmt.pix.height = dev->height; |
926 | f->fmt.pix.pixelformat = dev->format->fourcc;; | 926 | f->fmt.pix.pixelformat = dev->format->fourcc; |
927 | f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3;; | 927 | f->fmt.pix.bytesperline = (dev->width * dev->format->depth + 7) >> 3; |
928 | f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height; | 928 | f->fmt.pix.sizeimage = f->fmt.pix.bytesperline * dev->height; |
929 | f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; | 929 | f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; |
930 | 930 | ||