diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2010-05-09 05:39:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-06-01 00:21:45 -0400 |
commit | 3907b07294a9a87793ca9e0223c7bf66b6108ab0 (patch) | |
tree | 0c585f142e8d6e0904a3ab55b5cc3e2b7d4577d1 /drivers/media/video/tvp514x.c | |
parent | c2fc80961fc2059c05bf07c92decfffde2a0f9ef (diff) |
V4L/DVB: tvp514x: add missing newlines
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Reviewed-by: Vaibhav Hiremath <hvaibhav@ti.com>
Tested-by: Vaibhav Hiremath <hvaibhav@ti.com>
Acked-by: Vaibhav Hiremath <hvaibhav@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/tvp514x.c')
-rw-r--r-- | drivers/media/video/tvp514x.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/media/video/tvp514x.c b/drivers/media/video/tvp514x.c index cb4284384133..1b03d0eb20df 100644 --- a/drivers/media/video/tvp514x.c +++ b/drivers/media/video/tvp514x.c | |||
@@ -611,7 +611,7 @@ static int tvp514x_s_std(struct v4l2_subdev *sd, v4l2_std_id std_id) | |||
611 | decoder->tvp514x_regs[REG_VIDEO_STD].val = | 611 | decoder->tvp514x_regs[REG_VIDEO_STD].val = |
612 | decoder->std_list[i].video_std; | 612 | decoder->std_list[i].video_std; |
613 | 613 | ||
614 | v4l2_dbg(1, debug, sd, "Standard set to: %s", | 614 | v4l2_dbg(1, debug, sd, "Standard set to: %s\n", |
615 | decoder->std_list[i].standard.name); | 615 | decoder->std_list[i].standard.name); |
616 | return 0; | 616 | return 0; |
617 | } | 617 | } |
@@ -783,7 +783,7 @@ tvp514x_queryctrl(struct v4l2_subdev *sd, struct v4l2_queryctrl *qctrl) | |||
783 | return err; | 783 | return err; |
784 | } | 784 | } |
785 | 785 | ||
786 | v4l2_dbg(1, debug, sd, "Query Control:%s: Min - %d, Max - %d, Def - %d", | 786 | v4l2_dbg(1, debug, sd, "Query Control:%s: Min - %d, Max - %d, Def - %d\n", |
787 | qctrl->name, qctrl->minimum, qctrl->maximum, | 787 | qctrl->name, qctrl->minimum, qctrl->maximum, |
788 | qctrl->default_value); | 788 | qctrl->default_value); |
789 | 789 | ||
@@ -840,7 +840,7 @@ tvp514x_g_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) | |||
840 | return -EINVAL; | 840 | return -EINVAL; |
841 | } | 841 | } |
842 | 842 | ||
843 | v4l2_dbg(1, debug, sd, "Get Control: ID - %d - %d", | 843 | v4l2_dbg(1, debug, sd, "Get Control: ID - %d - %d\n", |
844 | ctrl->id, ctrl->value); | 844 | ctrl->id, ctrl->value); |
845 | return 0; | 845 | return 0; |
846 | } | 846 | } |
@@ -940,7 +940,7 @@ tvp514x_s_ctrl(struct v4l2_subdev *sd, struct v4l2_control *ctrl) | |||
940 | return err; | 940 | return err; |
941 | } | 941 | } |
942 | 942 | ||
943 | v4l2_dbg(1, debug, sd, "Set Control: ID - %d - %d", | 943 | v4l2_dbg(1, debug, sd, "Set Control: ID - %d - %d\n", |
944 | ctrl->id, ctrl->value); | 944 | ctrl->id, ctrl->value); |
945 | 945 | ||
946 | return err; | 946 | return err; |
@@ -1009,7 +1009,7 @@ tvp514x_try_fmt_cap(struct v4l2_subdev *sd, struct v4l2_format *f) | |||
1009 | pix->priv = 0; | 1009 | pix->priv = 0; |
1010 | 1010 | ||
1011 | v4l2_dbg(1, debug, sd, "Try FMT: bytesperline - %d" | 1011 | v4l2_dbg(1, debug, sd, "Try FMT: bytesperline - %d" |
1012 | "Width - %d, Height - %d", | 1012 | "Width - %d, Height - %d\n", |
1013 | pix->bytesperline, | 1013 | pix->bytesperline, |
1014 | pix->width, pix->height); | 1014 | pix->width, pix->height); |
1015 | return 0; | 1015 | return 0; |
@@ -1071,7 +1071,7 @@ tvp514x_g_fmt_cap(struct v4l2_subdev *sd, struct v4l2_format *f) | |||
1071 | f->fmt.pix = decoder->pix; | 1071 | f->fmt.pix = decoder->pix; |
1072 | 1072 | ||
1073 | v4l2_dbg(1, debug, sd, "Current FMT: bytesperline - %d" | 1073 | v4l2_dbg(1, debug, sd, "Current FMT: bytesperline - %d" |
1074 | "Width - %d, Height - %d", | 1074 | "Width - %d, Height - %d\n", |
1075 | decoder->pix.bytesperline, | 1075 | decoder->pix.bytesperline, |
1076 | decoder->pix.width, decoder->pix.height); | 1076 | decoder->pix.width, decoder->pix.height); |
1077 | return 0; | 1077 | return 0; |