aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/intel/common/sst-firmware.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2017-11-02 12:08:00 +0100
committerMark Brown <broonie@kernel.org>2017-11-02 11:20:37 +0000
commitadebc5321852da0b6ed13888e3aa291dfb011072 (patch)
treecaeee7f64becc75efb7dfc8a6410698ca16feaff /sound/soc/intel/common/sst-firmware.c
parentASoC: Intel: fix Kconfig dependencies (diff)
downloadlinux-dev-adebc5321852da0b6ed13888e3aa291dfb011072.tar.xz
linux-dev-adebc5321852da0b6ed13888e3aa291dfb011072.zip
ASoC: intel: include linux/module.h as needed
The MODULE_DESCRIPTION() macro is only available when including the linux/module.h header. Apparently this is included indirectly from sst-firmware.c in some configurations, but not in others: sound/soc/intel/common/sst-firmware.c:1278:20: error: expected declaration specifiers or '...' before string constant MODULE_DESCRIPTION("Intel SST Firmware Loader"); ^~~~~~~~~~~~~~~~~~~~~~~~~~~ sound/soc/intel/common/sst-firmware.c:1279:16: error: expected declaration specifiers or '...' before string constant This adds the missing include line. Fixes: a395bdd6b24b ("ASoC: intel: Fix sst-dsp dependency on dw stuff") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/common/sst-firmware.c')
-rw-r--r--sound/soc/intel/common/sst-firmware.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/intel/common/sst-firmware.c b/sound/soc/intel/common/sst-firmware.c
index 79a9fdf94d38..657afc02f1c4 100644
--- a/sound/soc/intel/common/sst-firmware.c
+++ b/sound/soc/intel/common/sst-firmware.c
@@ -19,6 +19,7 @@
#include <linux/sched.h>
#include <linux/firmware.h>
#include <linux/export.h>
+#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
#include <linux/dmaengine.h>