Commit 969e877c authored by Sylwester Nawrocki's avatar Sylwester Nawrocki Committed by Mauro Carvalho Chehab

[media] s5p-fimc: Add missing line breaks

Add missing line breaks in the debug traces.
Signed-off-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent bed3cd27
...@@ -257,14 +257,14 @@ int fimc_set_scaler_info(struct fimc_ctx *ctx) ...@@ -257,14 +257,14 @@ int fimc_set_scaler_info(struct fimc_ctx *ctx)
ty = d_frame->height; ty = d_frame->height;
} }
if (tx <= 0 || ty <= 0) { if (tx <= 0 || ty <= 0) {
dev_err(dev, "Invalid target size: %dx%d", tx, ty); dev_err(dev, "Invalid target size: %dx%d\n", tx, ty);
return -EINVAL; return -EINVAL;
} }
sx = s_frame->width; sx = s_frame->width;
sy = s_frame->height; sy = s_frame->height;
if (sx <= 0 || sy <= 0) { if (sx <= 0 || sy <= 0) {
dev_err(dev, "Invalid source size: %dx%d", sx, sy); dev_err(dev, "Invalid source size: %dx%d\n", sx, sy);
return -EINVAL; return -EINVAL;
} }
sc->real_width = sx; sc->real_width = sx;
......
...@@ -611,7 +611,7 @@ static void fimc_lite_try_crop(struct fimc_lite *fimc, struct v4l2_rect *r) ...@@ -611,7 +611,7 @@ static void fimc_lite_try_crop(struct fimc_lite *fimc, struct v4l2_rect *r)
r->left = round_down(r->left, fimc->variant->win_hor_offs_align); r->left = round_down(r->left, fimc->variant->win_hor_offs_align);
r->top = clamp_t(u32, r->top, 0, frame->f_height - r->height); r->top = clamp_t(u32, r->top, 0, frame->f_height - r->height);
v4l2_dbg(1, debug, &fimc->subdev, "(%d,%d)/%dx%d, sink fmt: %dx%d", v4l2_dbg(1, debug, &fimc->subdev, "(%d,%d)/%dx%d, sink fmt: %dx%d\n",
r->left, r->top, r->width, r->height, r->left, r->top, r->width, r->height,
frame->f_width, frame->f_height); frame->f_width, frame->f_height);
} }
...@@ -631,7 +631,7 @@ static void fimc_lite_try_compose(struct fimc_lite *fimc, struct v4l2_rect *r) ...@@ -631,7 +631,7 @@ static void fimc_lite_try_compose(struct fimc_lite *fimc, struct v4l2_rect *r)
r->left = round_down(r->left, fimc->variant->out_hor_offs_align); r->left = round_down(r->left, fimc->variant->out_hor_offs_align);
r->top = clamp_t(u32, r->top, 0, fimc->out_frame.f_height - r->height); r->top = clamp_t(u32, r->top, 0, fimc->out_frame.f_height - r->height);
v4l2_dbg(1, debug, &fimc->subdev, "(%d,%d)/%dx%d, source fmt: %dx%d", v4l2_dbg(1, debug, &fimc->subdev, "(%d,%d)/%dx%d, source fmt: %dx%d\n",
r->left, r->top, r->width, r->height, r->left, r->top, r->width, r->height,
frame->f_width, frame->f_height); frame->f_width, frame->f_height);
} }
...@@ -1011,7 +1011,7 @@ static int fimc_lite_link_setup(struct media_entity *entity, ...@@ -1011,7 +1011,7 @@ static int fimc_lite_link_setup(struct media_entity *entity,
if (WARN_ON(fimc == NULL)) if (WARN_ON(fimc == NULL))
return 0; return 0;
v4l2_dbg(1, debug, sd, "%s: %s --> %s, flags: 0x%x. source_id: 0x%x", v4l2_dbg(1, debug, sd, "%s: %s --> %s, flags: 0x%x. source_id: 0x%x\n",
__func__, remote->entity->name, local->entity->name, __func__, remote->entity->name, local->entity->name,
flags, fimc->source_subdev_grp_id); flags, fimc->source_subdev_grp_id);
...@@ -1120,7 +1120,7 @@ static int fimc_lite_subdev_set_fmt(struct v4l2_subdev *sd, ...@@ -1120,7 +1120,7 @@ static int fimc_lite_subdev_set_fmt(struct v4l2_subdev *sd,
struct flite_frame *source = &fimc->out_frame; struct flite_frame *source = &fimc->out_frame;
const struct fimc_fmt *ffmt; const struct fimc_fmt *ffmt;
v4l2_dbg(1, debug, sd, "pad%d: code: 0x%x, %dx%d", v4l2_dbg(1, debug, sd, "pad%d: code: 0x%x, %dx%d\n",
fmt->pad, mf->code, mf->width, mf->height); fmt->pad, mf->code, mf->width, mf->height);
mf->colorspace = V4L2_COLORSPACE_JPEG; mf->colorspace = V4L2_COLORSPACE_JPEG;
...@@ -1196,7 +1196,7 @@ static int fimc_lite_subdev_get_selection(struct v4l2_subdev *sd, ...@@ -1196,7 +1196,7 @@ static int fimc_lite_subdev_get_selection(struct v4l2_subdev *sd,
} }
mutex_unlock(&fimc->lock); mutex_unlock(&fimc->lock);
v4l2_dbg(1, debug, sd, "%s: (%d,%d) %dx%d, f_w: %d, f_h: %d", v4l2_dbg(1, debug, sd, "%s: (%d,%d) %dx%d, f_w: %d, f_h: %d\n",
__func__, f->rect.left, f->rect.top, f->rect.width, __func__, f->rect.left, f->rect.top, f->rect.width,
f->rect.height, f->f_width, f->f_height); f->rect.height, f->f_width, f->f_height);
...@@ -1230,7 +1230,7 @@ static int fimc_lite_subdev_set_selection(struct v4l2_subdev *sd, ...@@ -1230,7 +1230,7 @@ static int fimc_lite_subdev_set_selection(struct v4l2_subdev *sd,
} }
mutex_unlock(&fimc->lock); mutex_unlock(&fimc->lock);
v4l2_dbg(1, debug, sd, "%s: (%d,%d) %dx%d, f_w: %d, f_h: %d", v4l2_dbg(1, debug, sd, "%s: (%d,%d) %dx%d, f_w: %d, f_h: %d\n",
__func__, f->rect.left, f->rect.top, f->rect.width, __func__, f->rect.left, f->rect.top, f->rect.width,
f->rect.height, f->f_width, f->f_height); f->rect.height, f->f_width, f->f_height);
......
...@@ -556,7 +556,7 @@ static int __fimc_md_create_fimc_sink_links(struct fimc_md *fmd, ...@@ -556,7 +556,7 @@ static int __fimc_md_create_fimc_sink_links(struct fimc_md *fmd,
if (ret) if (ret)
break; break;
v4l2_info(&fmd->v4l2_dev, "created link [%s] %c> [%s]", v4l2_info(&fmd->v4l2_dev, "created link [%s] %c> [%s]\n",
source->name, flags ? '=' : '-', sink->name); source->name, flags ? '=' : '-', sink->name);
} }
return 0; return 0;
...@@ -640,7 +640,7 @@ static int fimc_md_create_links(struct fimc_md *fmd) ...@@ -640,7 +640,7 @@ static int fimc_md_create_links(struct fimc_md *fmd)
if (ret) if (ret)
return ret; return ret;
v4l2_info(&fmd->v4l2_dev, "created link [%s] => [%s]", v4l2_info(&fmd->v4l2_dev, "created link [%s] => [%s]\n",
sensor->entity.name, csis->entity.name); sensor->entity.name, csis->entity.name);
source = NULL; source = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment