Message ID | 20200921104746.2903507-1-kai.vehmanen@linux.intel.com |
---|---|
State | Accepted |
Commit | 5b51b9221f711d205e361f8d1182fd6aea667296 |
Headers | show |
Series | ASoC: SOF: imx: add missing MODULE_LICENSE() for imx-common | expand |
On Mon, 21 Sep 2020 13:47:46 +0300, Kai Vehmanen wrote: > Fix build warning: > WARNING: modpost: missing MODULE_LICENSE() in sound/soc/sof/imx/imx-common.o Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: SOF: imx: add missing MODULE_LICENSE() for imx-common commit: 5b51b9221f711d205e361f8d1182fd6aea667296 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
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");