Commit d0ce898c authored by Joonyoung Shim's avatar Joonyoung Shim Committed by Mauro Carvalho Chehab

[media] s5p-mfc: Replaced commas with semicolons

There is no any reason to use comma here.
Signed-off-by: default avatarJoonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: default avatarKamil Debski <k.debski@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent e246c333
...@@ -1152,9 +1152,9 @@ static int s5p_mfc_probe(struct platform_device *pdev) ...@@ -1152,9 +1152,9 @@ static int s5p_mfc_probe(struct platform_device *pdev)
ret = -ENOMEM; ret = -ENOMEM;
goto err_dec_alloc; goto err_dec_alloc;
} }
vfd->fops = &s5p_mfc_fops, vfd->fops = &s5p_mfc_fops;
vfd->ioctl_ops = get_dec_v4l2_ioctl_ops(); vfd->ioctl_ops = get_dec_v4l2_ioctl_ops();
vfd->release = video_device_release, vfd->release = video_device_release;
vfd->lock = &dev->mfc_mutex; vfd->lock = &dev->mfc_mutex;
vfd->v4l2_dev = &dev->v4l2_dev; vfd->v4l2_dev = &dev->v4l2_dev;
vfd->vfl_dir = VFL_DIR_M2M; vfd->vfl_dir = VFL_DIR_M2M;
...@@ -1177,9 +1177,9 @@ static int s5p_mfc_probe(struct platform_device *pdev) ...@@ -1177,9 +1177,9 @@ static int s5p_mfc_probe(struct platform_device *pdev)
ret = -ENOMEM; ret = -ENOMEM;
goto err_enc_alloc; goto err_enc_alloc;
} }
vfd->fops = &s5p_mfc_fops, vfd->fops = &s5p_mfc_fops;
vfd->ioctl_ops = get_enc_v4l2_ioctl_ops(); vfd->ioctl_ops = get_enc_v4l2_ioctl_ops();
vfd->release = video_device_release, vfd->release = video_device_release;
vfd->lock = &dev->mfc_mutex; vfd->lock = &dev->mfc_mutex;
vfd->v4l2_dev = &dev->v4l2_dev; vfd->v4l2_dev = &dev->v4l2_dev;
vfd->vfl_dir = VFL_DIR_M2M; vfd->vfl_dir = VFL_DIR_M2M;
......
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