Re: Patch "soundwire: fix regmap dependencies and align with other serial links" has been added to the 5.2-stable tree

2019-10-06 Thread Greg KH
On Sun, Oct 06, 2019 at 09:44:47AM -0400, Sasha Levin wrote: > This is a note to let you know that I've just added the patch titled > > soundwire: fix regmap dependencies and align with other serial links > > to the 5.2-stable tree which can be found at: > >

Re: [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-08-08 Thread Vinod Koul
On 18-07-19, 18:02, Pierre-Louis Bossart wrote: > The existing code has a mixed select/depend usage which makes no sense. > > config SOUNDWIRE_BUS >tristate >select REGMAP_SOUNDWIRE > > config REGMAP_SOUNDWIRE > tristate > depends on SOUNDWIRE_BUS > > Let's

Re: [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-08-08 Thread Srinivas Kandagatla
On 19/07/2019 00:02, Pierre-Louis Bossart wrote: The existing code has a mixed select/depend usage which makes no sense. config SOUNDWIRE_BUS tristate select REGMAP_SOUNDWIRE config REGMAP_SOUNDWIRE tristate depends on SOUNDWIRE_BUS Let's remove one layer

Re: [alsa-devel] [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-08-07 Thread Mark Brown
On Wed, Aug 07, 2019 at 01:17:20PM -0500, Pierre-Louis Bossart wrote: > I don't have the knowledge or means to test what I suggested initially for > the other buses, and the optimization was minimal anyways, so this patch > takes the path of least resistance and aligns with others. > if there

Re: [alsa-devel] [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-08-07 Thread Pierre-Louis Bossart
Hi Mark, Vinod, Mark, any feedback? There will be a set of SoundWire codec drivers provided upstream soonish and we'll get a number of kbuild errors without this patch. I think I'm missing context here, I've basically been zoning out all the soundwire stuff - the patch series are huge

Re: [alsa-devel] [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-08-07 Thread Mark Brown
On Wed, Aug 07, 2019 at 10:09:27AM -0500, Pierre-Louis Bossart wrote: > Vinod, Mark, any feedback? > There will be a set of SoundWire codec drivers provided upstream soonish and > we'll get a number of kbuild errors without this patch. I think I'm missing context here, I've basically been

Re: [alsa-devel] [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-08-07 Thread Pierre-Louis Bossart
On 7/19/19 4:04 AM, Rafael J. Wysocki wrote: On Fri, Jul 19, 2019 at 1:02 AM Pierre-Louis Bossart wrote: The existing code has a mixed select/depend usage which makes no sense. config SOUNDWIRE_BUS tristate select REGMAP_SOUNDWIRE config REGMAP_SOUNDWIRE tristate

Re: [PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-07-19 Thread Rafael J. Wysocki
On Fri, Jul 19, 2019 at 1:02 AM Pierre-Louis Bossart wrote: > > The existing code has a mixed select/depend usage which makes no sense. > > config SOUNDWIRE_BUS >tristate >select REGMAP_SOUNDWIRE > > config REGMAP_SOUNDWIRE > tristate > depends on SOUNDWIRE_BUS > >

[PATCH] soundwire: fix regmap dependencies and align with other serial links

2019-07-18 Thread Pierre-Louis Bossart
The existing code has a mixed select/depend usage which makes no sense. config SOUNDWIRE_BUS tristate select REGMAP_SOUNDWIRE config REGMAP_SOUNDWIRE tristate depends on SOUNDWIRE_BUS Let's remove one layer of Kconfig definitions and align with the solutions used