diff options
| author | Kai Vehmanen <[email protected]> | 2020-09-21 13:47:46 +0300 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2020-09-21 17:28:11 +0100 |
| commit | 5b51b9221f711d205e361f8d1182fd6aea667296 (patch) | |
| tree | 40aba0caf97df38eacfe70aa036ee886d10e3427 | |
| parent | 43437d0417a36bc9174deedce4ecc2c516ffde57 (diff) | |
ASoC: SOF: imx: add missing MODULE_LICENSE() for imx-common
Fix build warning:
WARNING: modpost: missing MODULE_LICENSE() in sound/soc/sof/imx/imx-common.o
Fixes: 18ebffe4d043 ("ASoC: SOF: imx: Add debug support for imx platforms")
Reported-by: Stephen Rothwell <[email protected]>
Signed-off-by: Kai Vehmanen <[email protected]>
Reviewed-by: Daniel Baluta <[email protected]>
Reviewed-by: Pierre-Louis Bossart <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | sound/soc/sof/imx/imx-common.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/sof/imx/imx-common.c b/sound/soc/sof/imx/imx-common.c index 63d8a5d7bc44..5fee637834c2 100644 --- a/sound/soc/sof/imx/imx-common.c +++ b/sound/soc/sof/imx/imx-common.c @@ -4,6 +4,7 @@ // // Common helpers for the audio DSP on i.MX8 +#include <linux/module.h> #include <sound/sof/xtensa.h> #include "../ops.h" @@ -70,3 +71,5 @@ void imx8_dump(struct snd_sof_dev *sdev, u32 flags) IMX8_STACK_DUMP_SIZE); } EXPORT_SYMBOL(imx8_dump); + +MODULE_LICENSE("Dual BSD/GPL"); |