From: Thierry Reding Date: Fri, 11 Jul 2014 06:58:58 +0000 (+0200) Subject: PCI: tegra: Fix GPL v2 license string typo X-Git-Tag: v3.17-rc1~153^2^5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d975cb5703c37ca66a10608855ccc13bedc3898a;p=thirdparty%2Fkernel%2Flinux.git PCI: tegra: Fix GPL v2 license string typo Per license_is_gpl_compatible(), the MODULE_LICENSE() string for GPL v2 is "GPL v2", not "GPLv2". Use "GPL v2" so this module doesn't taint the kernel. [bhelgaas: changelog] Signed-off-by: Thierry Reding Signed-off-by: Bjorn Helgaas Reviewed-by: Jingoo Han --- diff --git a/drivers/pci/host/pci-tegra.c b/drivers/pci/host/pci-tegra.c index 083cf37ca0475..c284e841e3ea0 100644 --- a/drivers/pci/host/pci-tegra.c +++ b/drivers/pci/host/pci-tegra.c @@ -1716,4 +1716,4 @@ module_platform_driver(tegra_pcie_driver); MODULE_AUTHOR("Thierry Reding "); MODULE_DESCRIPTION("NVIDIA Tegra PCIe driver"); -MODULE_LICENSE("GPLv2"); +MODULE_LICENSE("GPL v2");