[PATCH][resend] drm: bridge: add DesignWare HDMI I2S audio support

2016-11-01 Thread Russell King - ARM Linux
On Tue, Nov 01, 2016 at 12:36:29AM +, Kuninori Morimoto wrote: > > Hi Russell again > > > > > +static struct platform_driver snd_dw_hdmi_driver = { > > > > + .probe = snd_dw_hdmi_probe, > > > > > > The driver must have a .remove function, because the platform device it > > > is

[PATCH][resend] drm: bridge: add DesignWare HDMI I2S audio support

2016-11-01 Thread Kuninori Morimoto
Hi Russell again > > > +static struct platform_driver snd_dw_hdmi_driver = { > > > + .probe = snd_dw_hdmi_probe, > > > > The driver must have a .remove function, because the platform device it > > is binding against can appear and disappear. > > Thank you for your feedback > OK, I will add it

[PATCH][resend] drm: bridge: add DesignWare HDMI I2S audio support

2016-11-01 Thread Kuninori Morimoto
Hi Russell > > +static struct platform_driver snd_dw_hdmi_driver = { > > + .probe = snd_dw_hdmi_probe, > > The driver must have a .remove function, because the platform device it > is binding against can appear and disappear. Thank you for your feedback OK, I will add it

[PATCH][resend] drm: bridge: add DesignWare HDMI I2S audio support

2016-10-31 Thread Russell King - ARM Linux
On Fri, Oct 28, 2016 at 01:22:21AM +, Kuninori Morimoto wrote: > +static struct platform_driver snd_dw_hdmi_driver = { > + .probe = snd_dw_hdmi_probe, The driver must have a .remove function, because the platform device it is binding against can appear and disappear. -- RMK's Patch

[PATCH][resend] drm: bridge: add DesignWare HDMI I2S audio support

2016-10-28 Thread Kuninori Morimoto
From: Kuninori Morimoto Current dw-hdmi is supporting sound via AHB bus, but it has I2S audio feature too. This patch adds I2S audio support to dw-hdmi. This HDMI I2S is supported by using ALSA SoC common HDMI encoder driver. Signed-off-by: Kuninori Morimoto