All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: rockchips: fix build error
@ 2014-07-11 13:07 ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2014-07-11 13:07 UTC (permalink / raw)
  To: alsa-devel
  Cc: broonie, Arnd Bergmann, lgirdwood, linux-arm-kernel, Jianqun Xu

The newly added rockchip_i2s driver is lacking an include of
linux/module.h, causing a build error in some cases:

../sound/soc/rockchip/rockchip_i2s.c:526:20: error: expected declaration specifiers or '...' before string constant
 MODULE_DESCRIPTION("ROCKCHIP IIS ASoC Interface");

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Jianqun Xu <xjq@rock-chips.com>
---
 sound/soc/rockchip/rockchip_i2s.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index af1d8eb94f04..c3e53feba5b9 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -13,6 +13,7 @@
 #include <linux/delay.h>
 #include <linux/of_gpio.h>
 #include <linux/clk.h>
+#include <linux/module.h>
 #include <linux/pm_runtime.h>
 #include <linux/regmap.h>
 #include <sound/pcm_params.h>
-- 
1.8.3.2

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-07-12  0:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-11 13:07 [PATCH] ASoC: rockchips: fix build error Arnd Bergmann
2014-07-11 13:07 ` Arnd Bergmann
2014-07-11 13:48 ` Mark Brown
2014-07-11 13:48   ` Mark Brown
2014-07-12  0:59   ` Jianqun
2014-07-12  0:59     ` Jianqun

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.