This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] media: au0828 handle media_init and media_register window
Author:  Shuah Khan <[email protected]>
Date:    Thu Feb 11 21:41:31 2016 -0200

Media device initialization and registration steps are split. There is a
window between media device init and media device register during usb
probe.

au0828 bridge driver and snd-usb-audio could try to initialize the media
device, if they simply checked, whether the device has been registered.
They also need to check whether the device has been initialized.

Change the au0828-core to check if media device is already initialized
during initialization step and check if media device is already
registered during the registration step.

[[email protected]: fix a merge conflict]
Signed-off-by: Shuah Khan <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/usb/au0828/au0828-core.c | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=7b12adf6f5f8262967f83acd7c176fd617b8703a
diff --git a/drivers/media/usb/au0828/au0828-core.c 
b/drivers/media/usb/au0828/au0828-core.c
index 4448399e73c5..cafe57f37e3d 100644
--- a/drivers/media/usb/au0828/au0828-core.c
+++ b/drivers/media/usb/au0828/au0828-core.c
@@ -195,13 +195,35 @@ static int au0828_media_device_init(struct au0828_dev 
*dev,
        if (!mdev)
                return -ENOMEM;
 
-       media_device_usb_init(mdev, udev, udev->product);
+       /* check if media device is already initialized */
+       if (!mdev->dev)
+               media_device_usb_init(mdev, udev, udev->product);
 
        dev->media_dev = mdev;
 #endif
        return 0;
 }
 
+static int au0828_media_device_register(struct au0828_dev *dev,
+                                       struct usb_device *udev)
+{
+#ifdef CONFIG_MEDIA_CONTROLLER
+       int ret;
+
+       if (dev->media_dev &&
+               !media_devnode_is_registered(&dev->media_dev->devnode)) {
+
+               /* register media device */
+               ret = media_device_register(dev->media_dev);
+               if (ret) {
+                       dev_err(&udev->dev,
+                               "Media Device Register Error: %d\n", ret);
+                       return ret;
+               }
+       }
+#endif
+       return 0;
+}
 
 static int au0828_usb_probe(struct usb_interface *interface,
        const struct usb_device_id *id)
@@ -305,9 +327,7 @@ static int au0828_usb_probe(struct usb_interface *interface,
 
        mutex_unlock(&dev->lock);
 
-#ifdef CONFIG_MEDIA_CONTROLLER
-       retval = media_device_register(dev->media_dev);
-#endif
+       retval = au0828_media_device_register(dev, usbdev);
 
 done:
        if (retval < 0)

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to