|
@@ -408,8 +408,8 @@ static int omapvid_setup_overlay(struct omap_vout_device *vout,
|
|
|
v4l2_dbg(1, debug, &vout->vid_dev->v4l2_dev,
|
|
|
"%s enable=%d addr=%pad width=%d\n height=%d color_mode=%d\n"
|
|
|
"rotation=%d mirror=%d posx=%d posy=%d out_width = %d \n"
|
|
|
- "out_height=%d rotation_type=%d screen_width=%d\n",
|
|
|
- __func__, ovl->is_enabled(ovl), &info.paddr, info.width, info.height,
|
|
|
+ "out_height=%d rotation_type=%d screen_width=%d\n", __func__,
|
|
|
+ ovl->is_enabled(ovl), &info.paddr, info.width, info.height,
|
|
|
info.color_mode, info.rotation, info.mirror, info.pos_x,
|
|
|
info.pos_y, info.out_width, info.out_height, info.rotation_type,
|
|
|
info.screen_width);
|
|
@@ -791,7 +791,8 @@ static int omap_vout_buffer_prepare(struct videobuf_queue *q,
|
|
|
dma_addr = dma_map_single(vout->vid_dev->v4l2_dev.dev, (void *) addr,
|
|
|
size, DMA_TO_DEVICE);
|
|
|
if (dma_mapping_error(vout->vid_dev->v4l2_dev.dev, dma_addr))
|
|
|
- v4l2_err(&vout->vid_dev->v4l2_dev, "dma_map_single failed\n");
|
|
|
+ v4l2_err(&vout->vid_dev->v4l2_dev,
|
|
|
+ "dma_map_single failed\n");
|
|
|
|
|
|
vout->queued_buf_addr[vb->i] = (u8 *)vout->buf_phy_addr[vb->i];
|
|
|
}
|
|
@@ -1657,8 +1658,8 @@ static int vidioc_streamoff(struct file *file, void *fh, enum v4l2_buf_type i)
|
|
|
/* Turn of the pipeline */
|
|
|
ret = omapvid_apply_changes(vout);
|
|
|
if (ret)
|
|
|
- v4l2_err(&vout->vid_dev->v4l2_dev, "failed to change mode in"
|
|
|
- " streamoff\n");
|
|
|
+ v4l2_err(&vout->vid_dev->v4l2_dev,
|
|
|
+ "failed to change mode in streamoff\n");
|
|
|
|
|
|
INIT_LIST_HEAD(&vout->dma_queue);
|
|
|
ret = videobuf_streamoff(&vout->vbq);
|
|
@@ -1858,8 +1859,8 @@ static int __init omap_vout_setup_video_data(struct omap_vout_device *vout)
|
|
|
vfd = vout->vfd = video_device_alloc();
|
|
|
|
|
|
if (!vfd) {
|
|
|
- printk(KERN_ERR VOUT_NAME ": could not allocate"
|
|
|
- " video device struct\n");
|
|
|
+ printk(KERN_ERR VOUT_NAME
|
|
|
+ ": could not allocate video device struct\n");
|
|
|
v4l2_ctrl_handler_free(hdl);
|
|
|
return -ENOMEM;
|
|
|
}
|
|
@@ -1984,16 +1985,17 @@ static int __init omap_vout_create_video_devices(struct platform_device *pdev)
|
|
|
*/
|
|
|
vfd = vout->vfd;
|
|
|
if (video_register_device(vfd, VFL_TYPE_GRABBER, -1) < 0) {
|
|
|
- dev_err(&pdev->dev, ": Could not register "
|
|
|
- "Video for Linux device\n");
|
|
|
+ dev_err(&pdev->dev,
|
|
|
+ ": Could not register Video for Linux device\n");
|
|
|
vfd->minor = -1;
|
|
|
ret = -ENODEV;
|
|
|
goto error2;
|
|
|
}
|
|
|
video_set_drvdata(vfd, vout);
|
|
|
|
|
|
- dev_info(&pdev->dev, ": registered and initialized"
|
|
|
- " video device %d\n", vfd->minor);
|
|
|
+ dev_info(&pdev->dev,
|
|
|
+ ": registered and initialized video device %d\n",
|
|
|
+ vfd->minor);
|
|
|
if (k == (pdev->num_resources - 1))
|
|
|
return 0;
|
|
|
|