aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/pvrusb2
diff options
context:
space:
mode:
authorMike Isely <isely@pobox.com>2009-03-07 00:11:12 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:43:39 -0400
commit7dfdf1ee14c245180f26d23231e690a80b2c6225 (patch)
treeb5da5b473eba8dd2cf0401547b167ac30962527f /drivers/media/video/pvrusb2
parent69ea3c1cbc1d78d9f522e18e20c73e6ef9f8e39f (diff)
V4L/DVB (11201): pvrusb2: Fix space-after-comma idiocy
Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/pvrusb2')
-rw-r--r--drivers/media/video/pvrusb2/pvrusb2-hdw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/drivers/media/video/pvrusb2/pvrusb2-hdw.c
index 099b0d439560..0cfe0eec34ea 100644
--- a/drivers/media/video/pvrusb2/pvrusb2-hdw.c
+++ b/drivers/media/video/pvrusb2/pvrusb2-hdw.c
@@ -3032,7 +3032,7 @@ static void pvr2_subdev_update(struct pvr2_hdw *hdw)
3032 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE; 3032 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
3033 fmt.fmt.pix.width = hdw->res_hor_val; 3033 fmt.fmt.pix.width = hdw->res_hor_val;
3034 fmt.fmt.pix.height = hdw->res_ver_val; 3034 fmt.fmt.pix.height = hdw->res_ver_val;
3035 pvr2_trace(PVR2_TRACE_CHIPS,"subdev v4l2 set_size(%dx%d)", 3035 pvr2_trace(PVR2_TRACE_CHIPS, "subdev v4l2 set_size(%dx%d)",
3036 fmt.fmt.pix.width, fmt.fmt.pix.height); 3036 fmt.fmt.pix.width, fmt.fmt.pix.height);
3037 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_fmt, &fmt); 3037 v4l2_device_call_all(&hdw->v4l2_dev, 0, video, s_fmt, &fmt);
3038 } 3038 }