mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-23 22:34:21 +08:00
[media] s5c73m3: Add missing subdev .unregistered callback
This is needed to free any resources requested in the .registered subdev op. 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>
This commit is contained in:
parent
0c2224ee0e
commit
a5ad1dbe22
@ -1457,6 +1457,12 @@ static int s5c73m3_oif_registered(struct v4l2_subdev *sd)
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void s5c73m3_oif_unregistered(struct v4l2_subdev *sd)
|
||||
{
|
||||
struct s5c73m3 *state = oif_sd_to_s5c73m3(sd);
|
||||
v4l2_device_unregister_subdev(&state->sensor_sd);
|
||||
}
|
||||
|
||||
static const struct v4l2_subdev_internal_ops s5c73m3_internal_ops = {
|
||||
.open = s5c73m3_open,
|
||||
};
|
||||
@ -1474,6 +1480,7 @@ static const struct v4l2_subdev_ops s5c73m3_subdev_ops = {
|
||||
|
||||
static const struct v4l2_subdev_internal_ops oif_internal_ops = {
|
||||
.registered = s5c73m3_oif_registered,
|
||||
.unregistered = s5c73m3_oif_unregistered,
|
||||
.open = s5c73m3_oif_open,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user