aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/m5mols
diff options
context:
space:
mode:
authorSylwester Nawrocki <s.nawrocki@samsung.com>2012-09-20 07:11:52 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-10-01 19:28:25 -0400
commit05fb4da441c9197a59d537cf7f88522716287c61 (patch)
treeaa4a90d2f9eefc412c63b0ce2e036022841ee46a /drivers/media/i2c/m5mols
parent6612a08268a5efcc05e4a27dffde33f1b2b3a3eb (diff)
[media] m5mols: Remove unneeded control ops assignments
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>
Diffstat (limited to 'drivers/media/i2c/m5mols')
-rw-r--r--drivers/media/i2c/m5mols/m5mols_core.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/media/i2c/m5mols/m5mols_core.c b/drivers/media/i2c/m5mols/m5mols_core.c
index 6ca6a7f9de15..57293aa7512b 100644
--- a/drivers/media/i2c/m5mols/m5mols_core.c
+++ b/drivers/media/i2c/m5mols/m5mols_core.c
@@ -822,13 +822,6 @@ static int m5mols_log_status(struct v4l2_subdev *sd)
822 822
823static const struct v4l2_subdev_core_ops m5mols_core_ops = { 823static const struct v4l2_subdev_core_ops m5mols_core_ops = {
824 .s_power = m5mols_s_power, 824 .s_power = m5mols_s_power,
825 .g_ctrl = v4l2_subdev_g_ctrl,
826 .s_ctrl = v4l2_subdev_s_ctrl,
827 .queryctrl = v4l2_subdev_queryctrl,
828 .querymenu = v4l2_subdev_querymenu,
829 .g_ext_ctrls = v4l2_subdev_g_ext_ctrls,
830 .try_ext_ctrls = v4l2_subdev_try_ext_ctrls,
831 .s_ext_ctrls = v4l2_subdev_s_ext_ctrls,
832 .log_status = m5mols_log_status, 825 .log_status = m5mols_log_status,
833}; 826};
834 827