diff options
author | xujianqun <xjq@rock-chips.com> | 2014-07-11 07:40:05 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-11 08:32:26 -0400 |
commit | 1b21572f8fd791f5b54e5989bc8e0cc5308d2e6c (patch) | |
tree | ff95d1b332e8c66056424bd7c7388cb8fc348043 | |
parent | 4495c89fcf2624d542a27f1ecd70aa3524c54195 (diff) |
ASoC: rockchip: add missing module.h include
Missing module.h in linux directory will cause compile error with randconfig,
like as:
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: xujianqun <xjq@rock-chips.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | sound/soc/rockchip/rockchip_i2s.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c index af1d8eb94f04..663b1ed348db 100644 --- a/sound/soc/rockchip/rockchip_i2s.c +++ b/sound/soc/rockchip/rockchip_i2s.c | |||
@@ -10,6 +10,7 @@ | |||
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <linux/module.h> | ||
13 | #include <linux/delay.h> | 14 | #include <linux/delay.h> |
14 | #include <linux/of_gpio.h> | 15 | #include <linux/of_gpio.h> |
15 | #include <linux/clk.h> | 16 | #include <linux/clk.h> |