staging: vchiq_arm: Register vcsm-cma as a platform driver

Following the same pattern as bcm2835-camera and bcm2835-audio,
register the vcsm-cma 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:48 +00:00
committed by Dom Cobley
parent e14384f22e
commit 1f031b6159

View File

@@ -63,6 +63,7 @@
*/
static struct vchiq_device *bcm2835_audio;
static struct vchiq_device *bcm2835_camera;
static struct vchiq_device *vcsm_cma;
static const struct vchiq_platform_info bcm2835_info = {
.cache_line_size = 32,
@@ -1415,6 +1416,7 @@ static int vchiq_probe(struct platform_device *pdev)
vchiq_debugfs_init(&mgmt->state);
vcsm_cma = vchiq_device_register(&pdev->dev, "vcsm-cma");
bcm2835_audio = vchiq_device_register(&pdev->dev, "bcm2835-audio");
bcm2835_camera = vchiq_device_register(&pdev->dev, "bcm2835-camera");
@@ -1427,6 +1429,7 @@ static void vchiq_remove(struct platform_device *pdev)
vchiq_device_unregister(bcm2835_audio);
vchiq_device_unregister(bcm2835_camera);
vchiq_device_unregister(vcsm_cma);
vchiq_debugfs_deinit();
vchiq_deregister_chrdev();
vchiq_platform_uninit(mgmt);