]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[media] s5p-mfc: Replaced commas with semicolons
authorJoonyoung Shim <jy0922.shim@samsung.com>
Fri, 21 Feb 2014 02:22:12 +0000 (23:22 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Tue, 11 Mar 2014 13:28:49 +0000 (10:28 -0300)
There is no any reason to use comma here.

Signed-off-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/platform/s5p-mfc/s5p_mfc.c

index 0c47199dbe0340aff1a93e40ce38cfcf3f43787a..89356ae90238689a21de6f73344dd5336a96696d 100644 (file)
@@ -1152,9 +1152,9 @@ static int s5p_mfc_probe(struct platform_device *pdev)
                ret = -ENOMEM;
                goto err_dec_alloc;
        }
-       vfd->fops       = &s5p_mfc_fops,
+       vfd->fops       = &s5p_mfc_fops;
        vfd->ioctl_ops  = get_dec_v4l2_ioctl_ops();
-       vfd->release    = video_device_release,
+       vfd->release    = video_device_release;
        vfd->lock       = &dev->mfc_mutex;
        vfd->v4l2_dev   = &dev->v4l2_dev;
        vfd->vfl_dir    = VFL_DIR_M2M;
@@ -1177,9 +1177,9 @@ static int s5p_mfc_probe(struct platform_device *pdev)
                ret = -ENOMEM;
                goto err_enc_alloc;
        }
-       vfd->fops       = &s5p_mfc_fops,
+       vfd->fops       = &s5p_mfc_fops;
        vfd->ioctl_ops  = get_enc_v4l2_ioctl_ops();
-       vfd->release    = video_device_release,
+       vfd->release    = video_device_release;
        vfd->lock       = &dev->mfc_mutex;
        vfd->v4l2_dev   = &dev->v4l2_dev;
        vfd->vfl_dir    = VFL_DIR_M2M;