bcm27xx: add support for linux v5.15
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.15 / 950-0181-staging-vchiq_arm-Register-bcm2835-codec-as-a-platfo.patch
1 From 448957b26ff175acdad0a5facf61697be1dc9dec Mon Sep 17 00:00:00 2001
2 From: Dave Stevenson <dave.stevenson@raspberrypi.com>
3 Date: Wed, 6 Nov 2019 13:57:58 +0000
4 Subject: [PATCH] staging: vchiq_arm: Register bcm2835-codec as a
5 platform driver
6
7 Following the same pattern as bcm2835-camera and bcm2835-audio,
8 register the V4L2 codec driver as a platform driver
9
10 Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
11 ---
12 drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c | 3 +++
13 1 file changed, 3 insertions(+)
14
15 --- a/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
16 +++ b/drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
17 @@ -67,6 +67,7 @@ struct vchiq_state g_state;
18
19 static struct platform_device *bcm2835_camera;
20 static struct platform_device *bcm2835_audio;
21 +static struct platform_device *bcm2835_codec;
22 static struct platform_device *vcsm_cma;
23
24 static struct vchiq_drvdata bcm2835_drvdata = {
25 @@ -1840,6 +1841,7 @@ static int vchiq_probe(struct platform_d
26 }
27
28 vcsm_cma = vchiq_register_child(pdev, "vcsm-cma");
29 + bcm2835_codec = vchiq_register_child(pdev, "bcm2835-codec");
30 bcm2835_camera = vchiq_register_child(pdev, "bcm2835-camera");
31 bcm2835_audio = vchiq_register_child(pdev, "bcm2835_audio");
32
33 @@ -1855,6 +1857,7 @@ static int vchiq_remove(struct platform_
34 {
35 platform_device_unregister(bcm2835_audio);
36 platform_device_unregister(bcm2835_camera);
37 + platform_device_unregister(bcm2835_codec);
38 platform_device_unregister(vcsm_cma);
39 vchiq_debugfs_deinit();
40 vchiq_deregister_chrdev();