]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[media] s5p-fimc: fimc-lite: Remove empty s_power subdev callback
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Fri, 18 Jan 2013 15:02:31 +0000 (12:02 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 5 Feb 2013 19:39:35 +0000 (17:39 -0200)
The .s_power FIMC-LITE subdev callback is now empty and
unneeded. The FIMC-LITE IP power handling will be done
by the FIMC-IS driver, so just remove the callback.

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/platform/s5p-fimc/fimc-lite.c

index c67dd2ebcff5cbaff0e80179b8b8558e0954b1e0..fe6cd0c3bdd3d94f51f4c607dc5ebd50bbdb7a22 100644 (file)
@@ -1280,18 +1280,6 @@ static int fimc_lite_subdev_s_stream(struct v4l2_subdev *sd, int on)
        return ret;
 }
 
-static int fimc_lite_subdev_s_power(struct v4l2_subdev *sd, int on)
-{
-       struct fimc_lite *fimc = v4l2_get_subdevdata(sd);
-
-       if (fimc->out_path == FIMC_IO_DMA)
-               return -ENOIOCTLCMD;
-
-       /* TODO: */
-
-       return 0;
-}
-
 static int fimc_lite_log_status(struct v4l2_subdev *sd)
 {
        struct fimc_lite *fimc = v4l2_get_subdevdata(sd);
@@ -1391,7 +1379,6 @@ static const struct v4l2_subdev_video_ops fimc_lite_subdev_video_ops = {
 };
 
 static const struct v4l2_subdev_core_ops fimc_lite_core_ops = {
-       .s_power = fimc_lite_subdev_s_power,
        .log_status = fimc_lite_log_status,
 };