From: Bjorn Helgaas Date: Tue, 15 Jul 2014 21:07:46 +0000 (-0600) Subject: PCI: generic: Fix GPL v2 license string typo X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=eed6542dd53faa2f430abbd35e999c1f345d1edb;p=linux-beck.git PCI: generic: 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. Signed-off-by: Bjorn Helgaas Acked-by: Will Deacon --- 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 "); -MODULE_LICENSE("GPLv2"); +MODULE_LICENSE("GPL v2");