staging: media: atomisp: Remove gc2235_init() function.
authorVarsha Rao <rvarsha016@gmail.com>
Sun, 12 Mar 2017 16:19:08 +0000 (21:49 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Mar 2017 00:00:37 +0000 (08:00 +0800)
Remove gc2235_init() function definition and call, as it is used only
once in gc2235.c file. Replace the function call with return value,
__gc2235_init() function call.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/atomisp/i2c/gc2235.c

index 6a5a08e9a887b36eeefe05a0e7c951ad285e2e67..9b4102349f56215af49645796667d47211dd870d 100644 (file)
@@ -539,10 +539,6 @@ static int __gc2235_init(struct v4l2_subdev *sd)
 }
 
 static int is_init;
-static int gc2235_init(struct v4l2_subdev *sd)
-{
-       return __gc2235_init(sd);
-}
 
 static int power_ctrl(struct v4l2_subdev *sd, bool flag)
 {
@@ -669,7 +665,7 @@ static int gc2235_s_power(struct v4l2_subdev *sd, int on)
        else {
                ret = power_up(sd);
                if (!ret)
-                       ret = gc2235_init(sd);
+                       ret = __gc2235_init(sd);
                is_init = 1;
        }
        return ret;