staging: vchiq_arm: Register bcm2835-codec as a platform driver

Following the same pattern as bcm2835-camera and bcm2835-audio,
register the V4L2 codec driver as a platform driver

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
This commit is contained in:
Dave Stevenson
2019-11-06 13:57:58 +00:00
committed by popcornmix
parent cad856ae4a
commit cdc5fdb7bf

View File

@@ -109,6 +109,7 @@ static struct class *vchiq_class;
static DEFINE_SPINLOCK(msg_queue_spinlock); static DEFINE_SPINLOCK(msg_queue_spinlock);
static struct platform_device *bcm2835_camera; static struct platform_device *bcm2835_camera;
static struct platform_device *bcm2835_audio; static struct platform_device *bcm2835_audio;
static struct platform_device *bcm2835_codec;
static struct platform_device *vcsm_cma; static struct platform_device *vcsm_cma;
static struct vchiq_drvdata bcm2835_drvdata = { static struct vchiq_drvdata bcm2835_drvdata = {
@@ -2765,6 +2766,7 @@ static int vchiq_probe(struct platform_device *pdev)
MAJOR(vchiq_devid), MINOR(vchiq_devid)); MAJOR(vchiq_devid), MINOR(vchiq_devid));
vcsm_cma = vchiq_register_child(pdev, "vcsm-cma"); vcsm_cma = vchiq_register_child(pdev, "vcsm-cma");
bcm2835_codec = vchiq_register_child(pdev, "bcm2835-codec");
bcm2835_camera = vchiq_register_child(pdev, "bcm2835-camera"); bcm2835_camera = vchiq_register_child(pdev, "bcm2835-camera");
bcm2835_audio = vchiq_register_child(pdev, "bcm2835_audio"); bcm2835_audio = vchiq_register_child(pdev, "bcm2835_audio");
@@ -2781,6 +2783,7 @@ static int vchiq_remove(struct platform_device *pdev)
{ {
platform_device_unregister(bcm2835_audio); platform_device_unregister(bcm2835_audio);
platform_device_unregister(bcm2835_camera); platform_device_unregister(bcm2835_camera);
platform_device_unregister(bcm2835_codec);
platform_device_unregister(vcsm_cma); platform_device_unregister(vcsm_cma);
vchiq_debugfs_deinit(); vchiq_debugfs_deinit();
device_destroy(vchiq_class, vchiq_devid); device_destroy(vchiq_class, vchiq_devid);