* [PATCH] ASoC: fsl: micfil: Use dual license micfil code
@ 2023-08-03 7:26 Daniel Baluta
2023-08-03 11:32 ` Mark Brown
2023-08-03 16:40 ` Mark Brown
0 siblings, 2 replies; 4+ messages in thread
From: Daniel Baluta @ 2023-08-03 7:26 UTC (permalink / raw)
To: shengjiu.wang, broonie, alsa-devel
Cc: Xiubo.Lee, festevam, nicoleotsuka, lgirdwood, perex, tiwai,
linux-kernel, linux-imx
From: Daniel Baluta <daniel.baluta@nxp.com>
We need this in order to easily reuse register definitions
and some functions with Sound Open Firmware driver.
According to Documentation/process/license-rules.rst:
"Dual BSD/GPL" The module is dual licensed under a GPL v2
variant or BSD license choice. The exact
variant of the BSD license can only be
determined via the license information
in the corresponding source files.
so use "Dual BSD/GPL" for license string.
Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
---
sound/soc/fsl/fsl_micfil.c | 4 ++--
sound/soc/fsl/fsl_micfil.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c
index fe28b27e50d0..97cf315781ab 100644
--- a/sound/soc/fsl/fsl_micfil.c
+++ b/sound/soc/fsl/fsl_micfil.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
// Copyright 2018 NXP
#include <linux/bitfield.h>
@@ -1254,4 +1254,4 @@ module_platform_driver(fsl_micfil_driver);
MODULE_AUTHOR("Cosmin-Gabriel Samoila <cosmin.samoila@nxp.com>");
MODULE_DESCRIPTION("NXP PDM Microphone Interface (MICFIL) driver");
-MODULE_LICENSE("GPL v2");
+MODULE_LICENSE("Dual BSD/GPL");
diff --git a/sound/soc/fsl/fsl_micfil.h b/sound/soc/fsl/fsl_micfil.h
index 9237a1c4cb8f..fee9fe3d9119 100644
--- a/sound/soc/fsl/fsl_micfil.h
+++ b/sound/soc/fsl/fsl_micfil.h
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: GPL-2.0 */
+/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
/*
* PDM Microphone Interface for the NXP i.MX SoC
* Copyright 2018 NXP
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: fsl: micfil: Use dual license micfil code
2023-08-03 7:26 [PATCH] ASoC: fsl: micfil: Use dual license micfil code Daniel Baluta
@ 2023-08-03 11:32 ` Mark Brown
2023-08-03 13:18 ` Sascha Hauer
2023-08-03 16:40 ` Mark Brown
1 sibling, 1 reply; 4+ messages in thread
From: Mark Brown @ 2023-08-03 11:32 UTC (permalink / raw)
To: Daniel Baluta
Cc: shengjiu.wang, alsa-devel, Xiubo.Lee, festevam, nicoleotsuka,
lgirdwood, perex, tiwai, linux-kernel, linux-imx, Sascha Hauer
[-- Attachment #1: Type: text/plain, Size: 2053 bytes --]
On Thu, Aug 03, 2023 at 10:26:38AM +0300, Daniel Baluta wrote:
> From: Daniel Baluta <daniel.baluta@nxp.com>
>
> We need this in order to easily reuse register definitions
> and some functions with Sound Open Firmware driver.
>
> According to Documentation/process/license-rules.rst:
> "Dual BSD/GPL" The module is dual licensed under a GPL v2
> variant or BSD license choice. The exact
> variant of the BSD license can only be
> determined via the license information
> in the corresponding source files.
>
> so use "Dual BSD/GPL" for license string.
Adding Sascha as he seems to have written a lot of the commits for the
driver including some features. Leaving the full message for his
benefit.
> Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
> Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
> ---
> sound/soc/fsl/fsl_micfil.c | 4 ++--
> sound/soc/fsl/fsl_micfil.h | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c
> index fe28b27e50d0..97cf315781ab 100644
> --- a/sound/soc/fsl/fsl_micfil.c
> +++ b/sound/soc/fsl/fsl_micfil.c
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0
> +// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
> // Copyright 2018 NXP
>
> #include <linux/bitfield.h>
> @@ -1254,4 +1254,4 @@ module_platform_driver(fsl_micfil_driver);
>
> MODULE_AUTHOR("Cosmin-Gabriel Samoila <cosmin.samoila@nxp.com>");
> MODULE_DESCRIPTION("NXP PDM Microphone Interface (MICFIL) driver");
> -MODULE_LICENSE("GPL v2");
> +MODULE_LICENSE("Dual BSD/GPL");
> diff --git a/sound/soc/fsl/fsl_micfil.h b/sound/soc/fsl/fsl_micfil.h
> index 9237a1c4cb8f..fee9fe3d9119 100644
> --- a/sound/soc/fsl/fsl_micfil.h
> +++ b/sound/soc/fsl/fsl_micfil.h
> @@ -1,4 +1,4 @@
> -/* SPDX-License-Identifier: GPL-2.0 */
> +/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
> /*
> * PDM Microphone Interface for the NXP i.MX SoC
> * Copyright 2018 NXP
> --
> 2.25.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ASoC: fsl: micfil: Use dual license micfil code
2023-08-03 11:32 ` Mark Brown
@ 2023-08-03 13:18 ` Sascha Hauer
0 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2023-08-03 13:18 UTC (permalink / raw)
To: Mark Brown
Cc: Daniel Baluta, shengjiu.wang, alsa-devel, Xiubo.Lee, festevam,
nicoleotsuka, lgirdwood, perex, tiwai, linux-kernel, linux-imx
On Thu, Aug 03, 2023 at 12:32:45PM +0100, Mark Brown wrote:
> On Thu, Aug 03, 2023 at 10:26:38AM +0300, Daniel Baluta wrote:
> > From: Daniel Baluta <daniel.baluta@nxp.com>
> >
> > We need this in order to easily reuse register definitions
> > and some functions with Sound Open Firmware driver.
> >
> > According to Documentation/process/license-rules.rst:
> > "Dual BSD/GPL" The module is dual licensed under a GPL v2
> > variant or BSD license choice. The exact
> > variant of the BSD license can only be
> > determined via the license information
> > in the corresponding source files.
> >
> > so use "Dual BSD/GPL" for license string.
>
> Adding Sascha as he seems to have written a lot of the commits for the
> driver including some features. Leaving the full message for his
> benefit.
I am fine with that change.
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Sascha
>
> > Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
> > Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com>
> > ---
> > sound/soc/fsl/fsl_micfil.c | 4 ++--
> > sound/soc/fsl/fsl_micfil.h | 2 +-
> > 2 files changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c
> > index fe28b27e50d0..97cf315781ab 100644
> > --- a/sound/soc/fsl/fsl_micfil.c
> > +++ b/sound/soc/fsl/fsl_micfil.c
> > @@ -1,4 +1,4 @@
> > -// SPDX-License-Identifier: GPL-2.0
> > +// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
> > // Copyright 2018 NXP
> >
> > #include <linux/bitfield.h>
> > @@ -1254,4 +1254,4 @@ module_platform_driver(fsl_micfil_driver);
> >
> > MODULE_AUTHOR("Cosmin-Gabriel Samoila <cosmin.samoila@nxp.com>");
> > MODULE_DESCRIPTION("NXP PDM Microphone Interface (MICFIL) driver");
> > -MODULE_LICENSE("GPL v2");
> > +MODULE_LICENSE("Dual BSD/GPL");
> > diff --git a/sound/soc/fsl/fsl_micfil.h b/sound/soc/fsl/fsl_micfil.h
> > index 9237a1c4cb8f..fee9fe3d9119 100644
> > --- a/sound/soc/fsl/fsl_micfil.h
> > +++ b/sound/soc/fsl/fsl_micfil.h
> > @@ -1,4 +1,4 @@
> > -/* SPDX-License-Identifier: GPL-2.0 */
> > +/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
> > /*
> > * PDM Microphone Interface for the NXP i.MX SoC
> > * Copyright 2018 NXP
> > --
> > 2.25.1
> >
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
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: fsl: micfil: Use dual license micfil code
2023-08-03 7:26 [PATCH] ASoC: fsl: micfil: Use dual license micfil code Daniel Baluta
2023-08-03 11:32 ` Mark Brown
@ 2023-08-03 16:40 ` Mark Brown
1 sibling, 0 replies; 4+ messages in thread
From: Mark Brown @ 2023-08-03 16:40 UTC (permalink / raw)
To: shengjiu.wang, alsa-devel, Daniel Baluta
Cc: Xiubo.Lee, festevam, nicoleotsuka, lgirdwood, perex, tiwai,
linux-kernel, linux-imx
On Thu, 03 Aug 2023 10:26:38 +0300, Daniel Baluta wrote:
> We need this in order to easily reuse register definitions
> and some functions with Sound Open Firmware driver.
>
> According to Documentation/process/license-rules.rst:
> "Dual BSD/GPL" The module is dual licensed under a GPL v2
> variant or BSD license choice. The exact
> variant of the BSD license can only be
> determined via the license information
> in the corresponding source files.
>
> [...]
Applied to
https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next
Thanks!
[1/1] ASoC: fsl: micfil: Use dual license micfil code
commit: f803ec63686dec863a33cad87218d7d99c4b5e92
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
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-08-03 16:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-03 7:26 [PATCH] ASoC: fsl: micfil: Use dual license micfil code Daniel Baluta
2023-08-03 11:32 ` Mark Brown
2023-08-03 13:18 ` Sascha Hauer
2023-08-03 16:40 ` 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).