* [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq
@ 2011-12-12 8:01 Axel Lin
2011-12-12 8:40 ` Sascha Hauer
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Axel Lin @ 2011-12-12 8:01 UTC (permalink / raw)
To: alsa-devel; +Cc: Sascha Hauer, Mark Brown, Wolfram Sang, Liam Girdwood
This driver can be built as module and the file header indicates that
the driver is published under the GPL.
Thus add MODULE_LICENSE("GPL") for it.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
sound/soc/imx/imx-pcm-fiq.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sound/soc/imx/imx-pcm-fiq.c b/sound/soc/imx/imx-pcm-fiq.c
index d7ea0b3..456b7d7 100644
--- a/sound/soc/imx/imx-pcm-fiq.c
+++ b/sound/soc/imx/imx-pcm-fiq.c
@@ -332,3 +332,5 @@ static struct platform_driver imx_pcm_driver = {
};
module_platform_driver(imx_pcm_driver);
+
+MODULE_LICENSE("GPL");
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq
2011-12-12 8:01 [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq Axel Lin
@ 2011-12-12 8:40 ` Sascha Hauer
2011-12-12 8:53 ` Wolfram Sang
2011-12-12 10:12 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2011-12-12 8:40 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Mark Brown, Wolfram Sang, Liam Girdwood
On Mon, Dec 12, 2011 at 04:01:15PM +0800, Axel Lin wrote:
> This driver can be built as module and the file header indicates that
> the driver is published under the GPL.
> Thus add MODULE_LICENSE("GPL") for it.
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> sound/soc/imx/imx-pcm-fiq.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/sound/soc/imx/imx-pcm-fiq.c b/sound/soc/imx/imx-pcm-fiq.c
> index d7ea0b3..456b7d7 100644
> --- a/sound/soc/imx/imx-pcm-fiq.c
> +++ b/sound/soc/imx/imx-pcm-fiq.c
> @@ -332,3 +332,5 @@ static struct platform_driver imx_pcm_driver = {
> };
>
> module_platform_driver(imx_pcm_driver);
> +
> +MODULE_LICENSE("GPL");
> --
> 1.7.5.4
>
>
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq
2011-12-12 8:01 [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq Axel Lin
2011-12-12 8:40 ` Sascha Hauer
@ 2011-12-12 8:53 ` Wolfram Sang
2011-12-12 10:12 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2011-12-12 8:53 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Mark Brown, Sascha Hauer, Liam Girdwood
[-- Attachment #1.1: Type: text/plain, Size: 520 bytes --]
On Mon, Dec 12, 2011 at 04:01:15PM +0800, Axel Lin wrote:
> This driver can be built as module and the file header indicates that
> the driver is published under the GPL.
> Thus add MODULE_LICENSE("GPL") for it.
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
MODULE_AUTHOR and MODULE_DESCRIPTION should be added while we are
there (MODULE_ALIAS?)?
--
Pengutronix e.K. | Wolfram Sang |
Industrial Linux Solutions | http://www.pengutronix.de/ |
[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq
2011-12-12 8:01 [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq Axel Lin
2011-12-12 8:40 ` Sascha Hauer
2011-12-12 8:53 ` Wolfram Sang
@ 2011-12-12 10:12 ` Mark Brown
2 siblings, 0 replies; 4+ messages in thread
From: Mark Brown @ 2011-12-12 10:12 UTC (permalink / raw)
To: Axel Lin; +Cc: alsa-devel, Sascha Hauer, Wolfram Sang, Liam Girdwood
On Mon, Dec 12, 2011 at 04:01:15PM +0800, Axel Lin wrote:
> This driver can be built as module and the file header indicates that
> the driver is published under the GPL.
> Thus add MODULE_LICENSE("GPL") for it.
Applied, thanks - adding the additional information as Wolfram suggested
would also be good.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-12 10:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-12 8:01 [PATCH] ASoC: Add missed MODULE_LICENSE("GPL") for imx-pcm-fiq Axel Lin
2011-12-12 8:40 ` Sascha Hauer
2011-12-12 8:53 ` Wolfram Sang
2011-12-12 10:12 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).