diff options
Diffstat (limited to 'drivers/media/video/v4l2-device.c')
-rw-r--r-- | drivers/media/video/v4l2-device.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/media/video/v4l2-device.c b/drivers/media/video/v4l2-device.c index 5a7dc4afe92a..0b08f96b74a5 100644 --- a/drivers/media/video/v4l2-device.c +++ b/drivers/media/video/v4l2-device.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #endif | 26 | #endif |
27 | #include <linux/videodev2.h> | 27 | #include <linux/videodev2.h> |
28 | #include <media/v4l2-device.h> | 28 | #include <media/v4l2-device.h> |
29 | #include <media/v4l2-ctrls.h> | ||
29 | 30 | ||
30 | int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev) | 31 | int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev) |
31 | { | 32 | { |
@@ -115,6 +116,8 @@ EXPORT_SYMBOL_GPL(v4l2_device_unregister); | |||
115 | int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev, | 116 | int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev, |
116 | struct v4l2_subdev *sd) | 117 | struct v4l2_subdev *sd) |
117 | { | 118 | { |
119 | int err; | ||
120 | |||
118 | /* Check for valid input */ | 121 | /* Check for valid input */ |
119 | if (v4l2_dev == NULL || sd == NULL || !sd->name[0]) | 122 | if (v4l2_dev == NULL || sd == NULL || !sd->name[0]) |
120 | return -EINVAL; | 123 | return -EINVAL; |
@@ -122,6 +125,10 @@ int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev, | |||
122 | WARN_ON(sd->v4l2_dev != NULL); | 125 | WARN_ON(sd->v4l2_dev != NULL); |
123 | if (!try_module_get(sd->owner)) | 126 | if (!try_module_get(sd->owner)) |
124 | return -ENODEV; | 127 | return -ENODEV; |
128 | /* This just returns 0 if either of the two args is NULL */ | ||
129 | err = v4l2_ctrl_add_handler(v4l2_dev->ctrl_handler, sd->ctrl_handler); | ||
130 | if (err) | ||
131 | return err; | ||
125 | sd->v4l2_dev = v4l2_dev; | 132 | sd->v4l2_dev = v4l2_dev; |
126 | spin_lock(&v4l2_dev->lock); | 133 | spin_lock(&v4l2_dev->lock); |
127 | list_add_tail(&sd->list, &v4l2_dev->subdevs); | 134 | list_add_tail(&sd->list, &v4l2_dev->subdevs); |