OSDN Git Service

staging: vchiq_arm: Register a platform device for audio
authorStefan Wahren <stefan.wahren@i2se.com>
Thu, 6 Dec 2018 18:28:55 +0000 (19:28 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 12 Dec 2018 10:56:47 +0000 (11:56 +0100)
Following Eric's commit 37b7b3087a2f ("staging/vc04_services: Register a
platform device for the camera driver.") this register the audio driver as
a platform device, too.

Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c

index 490fade..2833f93 100644 (file)
@@ -167,6 +167,7 @@ static VCHIQ_STATE_T g_state;
 static struct class  *vchiq_class;
 static DEFINE_SPINLOCK(msg_queue_spinlock);
 static struct platform_device *bcm2835_camera;
+static struct platform_device *bcm2835_audio;
 
 static struct vchiq_drvdata bcm2835_drvdata = {
        .cache_line_size = 32,
@@ -3553,6 +3554,7 @@ static int vchiq_probe(struct platform_device *pdev)
                MAJOR(vchiq_devid), MINOR(vchiq_devid));
 
        bcm2835_camera = vchiq_register_child(pdev, "bcm2835-camera");
+       bcm2835_audio = vchiq_register_child(pdev, "bcm2835_audio");
 
        return 0;