[media] exynos-gsc: Fix checkpatch warning in gsc-m2m.c
authorSachin Kamat <sachin.kamat@linaro.org>
Fri, 23 Nov 2012 11:04:42 +0000 (08:04 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 21 Dec 2012 12:23:08 +0000 (10:23 -0200)
Fixes the following warning:
WARNING: space prohibited between function name and open parenthesis '('
FILE: media/platform/exynos-gsc/gsc-m2m.c:606:
ctx = kzalloc(sizeof (*ctx), GFP_KERNEL);

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/platform/exynos-gsc/gsc-m2m.c

index a8e5050..0d06d6c 100644 (file)
@@ -603,7 +603,7 @@ static int gsc_m2m_open(struct file *file)
        if (mutex_lock_interruptible(&gsc->lock))
                return -ERESTARTSYS;
 
-       ctx = kzalloc(sizeof (*ctx), GFP_KERNEL);
+       ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
        if (!ctx) {
                ret = -ENOMEM;
                goto unlock;