* [PATCH 0/2] Fix GPL v2 license string typos
@ 2014-07-15 22:56 Bjorn Helgaas
2014-07-15 22:56 ` [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo Bjorn Helgaas
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2014-07-15 22:56 UTC (permalink / raw)
To: linux-pci, Simon Horman, Will Deacon
Cc: Thierry Reding, linux-arm-kernel, linux-sh
Thierry posted similar patches for tegra and mvebu. These change the rest
of the occurrences in drivers/pci from:
-MODULE_LICENSE("GPLv2");
+MODULE_LICENSE("GPL v2");
---
Bjorn Helgaas (2):
PCI: generic: Fix GPL v2 license string typo
PCI: rcar: Fix GPL v2 license string typo
drivers/pci/host/pci-host-generic.c | 2 +-
drivers/pci/host/pcie-rcar.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo
2014-07-15 22:56 [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
@ 2014-07-15 22:56 ` Bjorn Helgaas
2014-07-16 8:44 ` Will Deacon
2014-07-15 22:56 ` [PATCH 2/2] PCI: rcar: " Bjorn Helgaas
2014-07-15 23:09 ` [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
2 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2014-07-15 22:56 UTC (permalink / raw)
To: linux-pci, Simon Horman, Will Deacon
Cc: Thierry Reding, linux-arm-kernel, linux-sh
The proper MODULE_LICENSE() string for the GPL v2 is "GPL v2", not "GPLv2".
Based-on-work-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
drivers/pci/host/pci-host-generic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c
index 44fe6aa6a43f..3d2076f59911 100644
--- a/drivers/pci/host/pci-host-generic.c
+++ b/drivers/pci/host/pci-host-generic.c
@@ -385,4 +385,4 @@ module_platform_driver(gen_pci_driver);
MODULE_DESCRIPTION("Generic PCI host driver");
MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
-MODULE_LICENSE("GPLv2");
+MODULE_LICENSE("GPL v2");
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] PCI: rcar: Fix GPL v2 license string typo
2014-07-15 22:56 [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
2014-07-15 22:56 ` [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo Bjorn Helgaas
@ 2014-07-15 22:56 ` Bjorn Helgaas
2014-07-16 0:08 ` Simon Horman
2014-07-15 23:09 ` [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
2 siblings, 1 reply; 6+ messages in thread
From: Bjorn Helgaas @ 2014-07-15 22:56 UTC (permalink / raw)
To: linux-pci, Simon Horman, Will Deacon
Cc: Thierry Reding, linux-arm-kernel, linux-sh
The proper MODULE_LICENSE() string for the GPL v2 is "GPL v2", not "GPLv2".
Based-on-work-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
drivers/pci/host/pcie-rcar.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/host/pcie-rcar.c b/drivers/pci/host/pcie-rcar.c
index f7d3de32c9a0..a393cc60b5a3 100644
--- a/drivers/pci/host/pcie-rcar.c
+++ b/drivers/pci/host/pcie-rcar.c
@@ -1003,4 +1003,4 @@ module_platform_driver(rcar_pcie_driver);
MODULE_AUTHOR("Phil Edworthy <phil.edworthy@renesas.com>");
MODULE_DESCRIPTION("Renesas R-Car PCIe driver");
-MODULE_LICENSE("GPLv2");
+MODULE_LICENSE("GPL v2");
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] Fix GPL v2 license string typos
2014-07-15 22:56 [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
2014-07-15 22:56 ` [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo Bjorn Helgaas
2014-07-15 22:56 ` [PATCH 2/2] PCI: rcar: " Bjorn Helgaas
@ 2014-07-15 23:09 ` Bjorn Helgaas
2 siblings, 0 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2014-07-15 23:09 UTC (permalink / raw)
To: linux-pci@vger.kernel.org, Simon Horman, Will Deacon
Cc: Thierry Reding, linux-arm, linux-sh@vger.kernel.org
On Tue, Jul 15, 2014 at 4:56 PM, Bjorn Helgaas <bhelgaas@google.com> wrote:
> Thierry posted similar patches for tegra and mvebu. These change the rest
> of the occurrences in drivers/pci from:
>
> -MODULE_LICENSE("GPLv2");
> +MODULE_LICENSE("GPL v2");
I should have done the research earlier, but the relevant code that
checks these strings is license_is_gpl_compatible(). That looks for
"GPL v2" but not "GPLv2".
> ---
>
> Bjorn Helgaas (2):
> PCI: generic: Fix GPL v2 license string typo
> PCI: rcar: Fix GPL v2 license string typo
>
>
> drivers/pci/host/pci-host-generic.c | 2 +-
> drivers/pci/host/pcie-rcar.c | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] PCI: rcar: Fix GPL v2 license string typo
2014-07-15 22:56 ` [PATCH 2/2] PCI: rcar: " Bjorn Helgaas
@ 2014-07-16 0:08 ` Simon Horman
0 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2014-07-16 0:08 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: linux-pci, Will Deacon, Thierry Reding, linux-arm-kernel,
linux-sh
On Tue, Jul 15, 2014 at 04:56:52PM -0600, Bjorn Helgaas wrote:
> The proper MODULE_LICENSE() string for the GPL v2 is "GPL v2", not "GPLv2".
>
> Based-on-work-by: Thierry Reding <treding@nvidia.com>
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Acked-by: Simon Horman <horms+renesas@verge.net.au>
> ---
> drivers/pci/host/pcie-rcar.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/host/pcie-rcar.c b/drivers/pci/host/pcie-rcar.c
> index f7d3de32c9a0..a393cc60b5a3 100644
> --- a/drivers/pci/host/pcie-rcar.c
> +++ b/drivers/pci/host/pcie-rcar.c
> @@ -1003,4 +1003,4 @@ module_platform_driver(rcar_pcie_driver);
>
> MODULE_AUTHOR("Phil Edworthy <phil.edworthy@renesas.com>");
> MODULE_DESCRIPTION("Renesas R-Car PCIe driver");
> -MODULE_LICENSE("GPLv2");
> +MODULE_LICENSE("GPL v2");
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo
2014-07-15 22:56 ` [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo Bjorn Helgaas
@ 2014-07-16 8:44 ` Will Deacon
0 siblings, 0 replies; 6+ messages in thread
From: Will Deacon @ 2014-07-16 8:44 UTC (permalink / raw)
To: Bjorn Helgaas
Cc: linux-pci@vger.kernel.org, Simon Horman, Thierry Reding,
linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org
On Tue, Jul 15, 2014 at 11:56:45PM +0100, Bjorn Helgaas wrote:
> The proper MODULE_LICENSE() string for the GPL v2 is "GPL v2", not "GPLv2".
>
> Based-on-work-by: Thierry Reding <treding@nvidia.com>
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
> ---
> drivers/pci/host/pci-host-generic.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/host/pci-host-generic.c b/drivers/pci/host/pci-host-generic.c
> index 44fe6aa6a43f..3d2076f59911 100644
> --- a/drivers/pci/host/pci-host-generic.c
> +++ b/drivers/pci/host/pci-host-generic.c
> @@ -385,4 +385,4 @@ module_platform_driver(gen_pci_driver);
>
> MODULE_DESCRIPTION("Generic PCI host driver");
> MODULE_AUTHOR("Will Deacon <will.deacon@arm.com>");
> -MODULE_LICENSE("GPLv2");
> +MODULE_LICENSE("GPL v2");
Acked-by: Will Deacon <will.deacon@arm.com>
Will
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-07-16 8:45 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-15 22:56 [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
2014-07-15 22:56 ` [PATCH 1/2] PCI: generic: Fix GPL v2 license string typo Bjorn Helgaas
2014-07-16 8:44 ` Will Deacon
2014-07-15 22:56 ` [PATCH 2/2] PCI: rcar: " Bjorn Helgaas
2014-07-16 0:08 ` Simon Horman
2014-07-15 23:09 ` [PATCH 0/2] Fix GPL v2 license string typos Bjorn Helgaas
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).