Message ID | 20180511122055.14206-2-peter.ujfalusi@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 2018-05-11 15:20, Peter Ujfalusi wrote: > WARNING: modpost: missing MODULE_LICENSE() in sound/soc/omap/snd-soc-sdma.o > see include/linux/module.h for more information > WARNING: modpost: missing MODULE_LICENSE() in sound/soc/omap/snd-soc-sdma.o > see include/linux/module.h for more information > > Add the missing MODULE_LICENSE. > > Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> > --- > sound/soc/omap/sdma-pcm.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/sound/soc/omap/sdma-pcm.c b/sound/soc/omap/sdma-pcm.c > index f7b2b5b69d27..403b90e2c89b 100644 > --- a/sound/soc/omap/sdma-pcm.c > +++ b/sound/soc/omap/sdma-pcm.c > @@ -4,6 +4,7 @@ > * Author: Peter Ujfalusi <peter.ujfalusi@ti.com> > */ > > +#include <linux/module.h> > #include <sound/core.h> > #include <sound/pcm.h> > #include <sound/pcm_params.h> > @@ -66,3 +67,7 @@ int sdma_pcm_platform_register(struct device *dev, > return devm_snd_dmaengine_pcm_register(dev, config, flags); > } > EXPORT_SYMBOL_GPL(sdma_pcm_platform_register); > + > +MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>"); > +MODULE_DESCRIPTION("sDMA PCM ASoC platform driver"); > +MODULE_LICENSE("GPL"); The SPDX line is telling GPL-2.0, I should have "GPL v2" resending. - Péter Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
diff --git a/sound/soc/omap/sdma-pcm.c b/sound/soc/omap/sdma-pcm.c index f7b2b5b69d27..403b90e2c89b 100644 --- a/sound/soc/omap/sdma-pcm.c +++ b/sound/soc/omap/sdma-pcm.c @@ -4,6 +4,7 @@ * Author: Peter Ujfalusi <peter.ujfalusi@ti.com> */ +#include <linux/module.h> #include <sound/core.h> #include <sound/pcm.h> #include <sound/pcm_params.h> @@ -66,3 +67,7 @@ int sdma_pcm_platform_register(struct device *dev, return devm_snd_dmaengine_pcm_register(dev, config, flags); } EXPORT_SYMBOL_GPL(sdma_pcm_platform_register); + +MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>"); +MODULE_DESCRIPTION("sDMA PCM ASoC platform driver"); +MODULE_LICENSE("GPL");
WARNING: modpost: missing MODULE_LICENSE() in sound/soc/omap/snd-soc-sdma.o see include/linux/module.h for more information WARNING: modpost: missing MODULE_LICENSE() in sound/soc/omap/snd-soc-sdma.o see include/linux/module.h for more information Add the missing MODULE_LICENSE. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> --- sound/soc/omap/sdma-pcm.c | 5 +++++ 1 file changed, 5 insertions(+)