Message ID | 20141109120222.GA3815@amd (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Sun, Nov 09, 2014 at 01:02:22PM +0100, Pavel Machek wrote: > > With device tree, it is possible (and encouraged) to build N900 > kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable > the driver build in this case. Please do try to use subject lines reflecting the style for the subsystem. > config SND_OMAP_SOC_RX51 > tristate "SoC Audio support for Nokia RX-51" > - depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C > + depends on SND_OMAP_SOC && ARM && I2C Please also update the config text so users have a chance to figure out that this driver is the one they need for their system - I guess most people won't know what RX-51 is.
On Sun 2014-11-09 12:37:53, Mark Brown wrote: > On Sun, Nov 09, 2014 at 01:02:22PM +0100, Pavel Machek wrote: > > > > With device tree, it is possible (and encouraged) to build N900 > > kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable > > the driver build in this case. > > Please do try to use subject lines reflecting the style for the > subsystem. Ok. > > config SND_OMAP_SOC_RX51 > > tristate "SoC Audio support for Nokia RX-51" > > - depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C > > + depends on SND_OMAP_SOC && ARM && I2C > > Please also update the config text so users have a chance to figure out > that this driver is the one they need for their system - I guess most > people won't know what RX-51 is. Actually help text below already explains that. I'll update tristate text, too. Pavel
diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig index d44463a..0d7b707 100644 --- a/sound/soc/omap/Kconfig +++ b/sound/soc/omap/Kconfig @@ -26,7 +26,7 @@ config SND_OMAP_SOC_N810 config SND_OMAP_SOC_RX51 tristate "SoC Audio support for Nokia RX-51" - depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C + depends on SND_OMAP_SOC && ARM && I2C select SND_OMAP_SOC_MCBSP select SND_SOC_TLV320AIC3X select SND_SOC_TPA6130A2
With device tree, it is possible (and encouraged) to build N900 kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable the driver build in this case. This makes sound work on my n900 under 3.18-rc1. Signed-off-by: Pavel Machek <pavel@ucw.cz>