Hi Shuah, On Tue, Nov 08, 2016 at 12:20:29PM -0700, Shuah Khan wrote: > On Tue, Nov 8, 2016 at 6:55 AM, Sakari Ailus > <sakari.ailus@xxxxxxxxxxxxxxx> wrote: > > From: Sakari Ailus <sakari.ailus@xxxxxx> > > > > Allow allocating the media device dynamically. As the struct media_device > > embeds struct media_devnode, the lifetime of that object is that same than > > that of the media_device. > > > > Signed-off-by: Sakari Ailus <sakari.ailus@xxxxxxxxxxxxxxx> > > --- > > drivers/media/media-device.c | 15 +++++++++++++++ > > include/media/media-device.h | 13 +++++++++++++ > > 2 files changed, 28 insertions(+) > > > > diff --git a/drivers/media/media-device.c b/drivers/media/media-device.c > > index a31329d..496195e 100644 > > --- a/drivers/media/media-device.c > > +++ b/drivers/media/media-device.c > > @@ -684,6 +684,21 @@ void media_device_init(struct media_device *mdev) > > } > > EXPORT_SYMBOL_GPL(media_device_init); > > > > +struct media_device *media_device_alloc(struct device *dev) > > +{ > > + struct media_device *mdev; > > + > > + mdev = kzalloc(sizeof(*mdev), GFP_KERNEL); > > + if (!mdev) > > + return NULL; > > + > > + mdev->dev = dev; > > + media_device_init(mdev); > > + > > + return mdev; > > +} > > +EXPORT_SYMBOL_GPL(media_device_alloc); > > + > > One problem with this allocation is, this media device can't be shared across > drivers. For au0828 and snd-usb-audio should be able to share the > media_device. That is what the Media Allocator API patch series does. > This a quick review and I will review the patch series and get back to > you. The assumption has always been there that a media device has a single struct device related to it. It hasn't been visible in the function call API though, just in the data structures. I have to admit I may have forgotten something that was discussed back then, but do you need to share the same media device over multiple devices in the system? I don't see that at least in the allocator patch itself. It's "[PATCH v3] media: Media Device Allocator API", isn't it? -- Kind regards, Sakari Ailus e-mail: sakari.ailus@xxxxxx XMPP: sailus@xxxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html