[media] m5mols: Remove unneeded control ops assignments
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Thu, 20 Sep 2012 11:11:52 +0000 (08:11 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 1 Oct 2012 23:28:25 +0000 (20:28 -0300)
Since all host drivers using this subdev are already using
the control framework these compatibility ops can be removed.

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/i2c/m5mols/m5mols_core.c

index 6ca6a7f9de1532f9ae404e7c83f9a43aa01704c7..57293aa7512b0f62e282e4b54deb9219cf2cc4c2 100644 (file)
@@ -822,13 +822,6 @@ static int m5mols_log_status(struct v4l2_subdev *sd)
 
 static const struct v4l2_subdev_core_ops m5mols_core_ops = {
        .s_power        = m5mols_s_power,
-       .g_ctrl         = v4l2_subdev_g_ctrl,
-       .s_ctrl         = v4l2_subdev_s_ctrl,
-       .queryctrl      = v4l2_subdev_queryctrl,
-       .querymenu      = v4l2_subdev_querymenu,
-       .g_ext_ctrls    = v4l2_subdev_g_ext_ctrls,
-       .try_ext_ctrls  = v4l2_subdev_try_ext_ctrls,
-       .s_ext_ctrls    = v4l2_subdev_s_ext_ctrls,
        .log_status     = m5mols_log_status,
 };