diff options
author | Mauro Carvalho Chehab <[email protected]> | 2021-10-21 11:45:14 +0100 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2021-11-04 14:34:23 -0500 |
commit | a4099c59a4b8f8521def15e091b3167dfae9ea16 (patch) | |
tree | f91e39f89486ce7adffcb86115e1c2fa4db91821 | |
parent | e636c1690941a396aa7643ae2c4397cebaa2851e (diff) |
PCI: kirin: Add MODULE_* macros
This driver misses the MODULE_* macros. Add them.
Link: https://lore.kernel.org/r/f7a951d0c2009f5765214fc2e83e24cf41585023.1634812676.git.mchehab+huawei@kernel.org
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Signed-off-by: Lorenzo Pieralisi <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Acked-by: Xiaowei Song <[email protected]>
-rw-r--r-- | drivers/pci/controller/dwc/pcie-kirin.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/pci/controller/dwc/pcie-kirin.c b/drivers/pci/controller/dwc/pcie-kirin.c index 0e3c70f54e94..66e3aefcb817 100644 --- a/drivers/pci/controller/dwc/pcie-kirin.c +++ b/drivers/pci/controller/dwc/pcie-kirin.c @@ -805,3 +805,8 @@ static struct platform_driver kirin_pcie_driver = { }, }; builtin_platform_driver(kirin_pcie_driver); + +MODULE_DEVICE_TABLE(of, kirin_pcie_match); +MODULE_DESCRIPTION("PCIe host controller driver for Kirin Phone SoCs"); +MODULE_AUTHOR("Xiaowei Song <[email protected]>"); +MODULE_LICENSE("GPL v2"); |