mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
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:
committed by
Dom Cobley
parent
eb002f8e65
commit
3bf81c1716
@@ -63,6 +63,7 @@
|
|||||||
*/
|
*/
|
||||||
static struct vchiq_device *bcm2835_audio;
|
static struct vchiq_device *bcm2835_audio;
|
||||||
static struct vchiq_device *bcm2835_camera;
|
static struct vchiq_device *bcm2835_camera;
|
||||||
|
static struct vchiq_device *bcm2835_codec;
|
||||||
static struct vchiq_device *vcsm_cma;
|
static struct vchiq_device *vcsm_cma;
|
||||||
|
|
||||||
static const struct vchiq_platform_info bcm2835_info = {
|
static const struct vchiq_platform_info bcm2835_info = {
|
||||||
@@ -1417,6 +1418,7 @@ static int vchiq_probe(struct platform_device *pdev)
|
|||||||
vchiq_debugfs_init(&mgmt->state);
|
vchiq_debugfs_init(&mgmt->state);
|
||||||
|
|
||||||
vcsm_cma = vchiq_device_register(&pdev->dev, "vcsm-cma");
|
vcsm_cma = vchiq_device_register(&pdev->dev, "vcsm-cma");
|
||||||
|
bcm2835_codec = vchiq_device_register(&pdev->dev, "bcm2835-codec");
|
||||||
bcm2835_audio = vchiq_device_register(&pdev->dev, "bcm2835-audio");
|
bcm2835_audio = vchiq_device_register(&pdev->dev, "bcm2835-audio");
|
||||||
bcm2835_camera = vchiq_device_register(&pdev->dev, "bcm2835-camera");
|
bcm2835_camera = vchiq_device_register(&pdev->dev, "bcm2835-camera");
|
||||||
|
|
||||||
@@ -1429,6 +1431,7 @@ static void vchiq_remove(struct platform_device *pdev)
|
|||||||
|
|
||||||
vchiq_device_unregister(bcm2835_audio);
|
vchiq_device_unregister(bcm2835_audio);
|
||||||
vchiq_device_unregister(bcm2835_camera);
|
vchiq_device_unregister(bcm2835_camera);
|
||||||
|
vchiq_device_unregister(bcm2835_codec);
|
||||||
vchiq_device_unregister(vcsm_cma);
|
vchiq_device_unregister(vcsm_cma);
|
||||||
vchiq_debugfs_deinit();
|
vchiq_debugfs_deinit();
|
||||||
vchiq_deregister_chrdev();
|
vchiq_deregister_chrdev();
|
||||||
|
|||||||
Reference in New Issue
Block a user