diff options
author | xujianqun <xjq@rock-chips.com> | 2014-07-11 15:40:05 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-11 16:32:26 +0400 |
commit | 1b21572f8fd791f5b54e5989bc8e0cc5308d2e6c (patch) | |
tree | ff95d1b332e8c66056424bd7c7388cb8fc348043 /sound/soc/rockchip | |
parent | 4495c89fcf2624d542a27f1ecd70aa3524c54195 (diff) | |
download | linux-1b21572f8fd791f5b54e5989bc8e0cc5308d2e6c.tar.xz |
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>
Diffstat (limited to 'sound/soc/rockchip')
-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 @@ * published by the Free Software Foundation. */ +#include <linux/module.h> #include <linux/delay.h> #include <linux/of_gpio.h> #include <linux/clk.h> |