[media] media: au0828 handle media_init and media_register window
authorShuah Khan <shuahkh@osg.samsung.com>
Thu, 11 Feb 2016 23:41:31 +0000 (21:41 -0200)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 27 Feb 2016 12:06:06 +0000 (09:06 -0300)
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.

[mchehab@osg.samsung.com: fix a merge conflict]
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/usb/au0828/au0828-core.c

index 4448399..cafe57f 100644 (file)
@@ -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)