diff options
author | Sergio Paracuellos <[email protected]> | 2021-12-07 11:49:23 +0100 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2022-01-12 15:46:56 -0600 |
commit | e4b1cd02dc8d7967a79edccd510724831e5cdee8 (patch) | |
tree | af8ea1e592d9fa3bdf1dfe923fc2531e9756d5ef | |
parent | fe7498ef791710a8bb79008850ce7fcbd3903657 (diff) |
PCI: mt7621: Add missing MODULE_LICENSE()
The MT7621 PCIe host controller driver can be built as a module, but it
lacks a MODULE_LICENSE(), which causes a build error:
ERROR: modpost: missing MODULE_LICENSE() in drivers/pci/controller/pcie-mt7621.o
Add MODULE_LICENSE() to the driver.
Fixes: 2bdd5238e756 ("PCI: mt7621: Add MediaTek MT7621 PCIe host controller driver")
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Yanteng Si <[email protected]>
Signed-off-by: Sergio Paracuellos <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Krzysztof WilczyĆski <[email protected]>
-rw-r--r-- | drivers/pci/controller/pcie-mt7621.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/pci/controller/pcie-mt7621.c b/drivers/pci/controller/pcie-mt7621.c index 42cce31df943..9da7452f565e 100644 --- a/drivers/pci/controller/pcie-mt7621.c +++ b/drivers/pci/controller/pcie-mt7621.c @@ -561,3 +561,5 @@ static struct platform_driver mt7621_pci_driver = { }, }; builtin_platform_driver(mt7621_pci_driver); + +MODULE_LICENSE("GPL v2"); |