Commit fdf51599 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

[media] radio-si4713: embed struct video_device instead of allocating it

Also set the v4l2_dev pointer in struct video_device as this was missing.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Acked-by: default avatarEduardo Valentin <edubezval@gmail.com>
Tested-by: default avatarEduardo Valentin <edubezval@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 91e20e81
...@@ -48,7 +48,7 @@ MODULE_ALIAS("platform:radio-si4713"); ...@@ -48,7 +48,7 @@ MODULE_ALIAS("platform:radio-si4713");
/* Driver state struct */ /* Driver state struct */
struct radio_si4713_device { struct radio_si4713_device {
struct v4l2_device v4l2_dev; struct v4l2_device v4l2_dev;
struct video_device *radio_dev; struct video_device radio_dev;
}; };
/* radio_si4713_fops - file operations interface */ /* radio_si4713_fops - file operations interface */
...@@ -217,7 +217,7 @@ static struct v4l2_ioctl_ops radio_si4713_ioctl_ops = { ...@@ -217,7 +217,7 @@ static struct v4l2_ioctl_ops radio_si4713_ioctl_ops = {
static struct video_device radio_si4713_vdev_template = { static struct video_device radio_si4713_vdev_template = {
.fops = &radio_si4713_fops, .fops = &radio_si4713_fops,
.name = "radio-si4713", .name = "radio-si4713",
.release = video_device_release, .release = video_device_release_empty,
.ioctl_ops = &radio_si4713_ioctl_ops, .ioctl_ops = &radio_si4713_ioctl_ops,
.vfl_dir = VFL_DIR_TX, .vfl_dir = VFL_DIR_TX,
}; };
...@@ -267,27 +267,18 @@ static int radio_si4713_pdriver_probe(struct platform_device *pdev) ...@@ -267,27 +267,18 @@ static int radio_si4713_pdriver_probe(struct platform_device *pdev)
goto put_adapter; goto put_adapter;
} }
rsdev->radio_dev = video_device_alloc(); rsdev->radio_dev = radio_si4713_vdev_template;
if (!rsdev->radio_dev) { rsdev->radio_dev.v4l2_dev = &rsdev->v4l2_dev;
dev_err(&pdev->dev, "Failed to alloc video device.\n"); video_set_drvdata(&rsdev->radio_dev, rsdev);
rval = -ENOMEM; if (video_register_device(&rsdev->radio_dev, VFL_TYPE_RADIO, radio_nr)) {
goto put_adapter;
}
memcpy(rsdev->radio_dev, &radio_si4713_vdev_template,
sizeof(radio_si4713_vdev_template));
video_set_drvdata(rsdev->radio_dev, rsdev);
if (video_register_device(rsdev->radio_dev, VFL_TYPE_RADIO, radio_nr)) {
dev_err(&pdev->dev, "Could not register video device.\n"); dev_err(&pdev->dev, "Could not register video device.\n");
rval = -EIO; rval = -EIO;
goto free_vdev; goto put_adapter;
} }
dev_info(&pdev->dev, "New device successfully probed\n"); dev_info(&pdev->dev, "New device successfully probed\n");
goto exit; goto exit;
free_vdev:
video_device_release(rsdev->radio_dev);
put_adapter: put_adapter:
i2c_put_adapter(adapter); i2c_put_adapter(adapter);
unregister_v4l2_dev: unregister_v4l2_dev:
...@@ -306,7 +297,7 @@ static int radio_si4713_pdriver_remove(struct platform_device *pdev) ...@@ -306,7 +297,7 @@ static int radio_si4713_pdriver_remove(struct platform_device *pdev)
struct radio_si4713_device *rsdev; struct radio_si4713_device *rsdev;
rsdev = container_of(v4l2_dev, struct radio_si4713_device, v4l2_dev); rsdev = container_of(v4l2_dev, struct radio_si4713_device, v4l2_dev);
video_unregister_device(rsdev->radio_dev); video_unregister_device(&rsdev->radio_dev);
i2c_put_adapter(client->adapter); i2c_put_adapter(client->adapter);
v4l2_device_unregister(&rsdev->v4l2_dev); v4l2_device_unregister(&rsdev->v4l2_dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment