mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
PCI: controller: Add missing MODULE_DESCRIPTION() macros
When ARCH=x86, make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/dwc/pci-exynos.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pci-host-generic.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pcie-altera.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pcie-altera-msi.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pcie-mediatek.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pcie-mediatek-gen3.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/vmd.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pcie-apple.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/pci/controller/pcie-mt7621.o Add the missing MODULE_DESCRIPTION() macro. [kwilczynski: update MODULE_DESCRIPTION() text, commit log] Link: https://lore.kernel.org/linux-pci/20240626-md-drivers-pci-controller-v2-1-94c811db7a51@quicinc.com Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Acked-by: Nirmal Patel <nirmal.patel@linux.intel.com> Acked-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> # MT7621
This commit is contained in:
parent
359efc9d7f
commit
142a41da39
@ -437,5 +437,6 @@ static struct platform_driver exynos_pcie_driver = {
|
||||
},
|
||||
};
|
||||
module_platform_driver(exynos_pcie_driver);
|
||||
MODULE_DESCRIPTION("Samsung Exynos PCIe host controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_DEVICE_TABLE(of, exynos_pcie_of_match);
|
||||
|
@ -96,4 +96,5 @@ void pci_host_common_remove(struct platform_device *pdev)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(pci_host_common_remove);
|
||||
|
||||
MODULE_DESCRIPTION("Generic PCI host common driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -86,4 +86,5 @@ static struct platform_driver gen_pci_driver = {
|
||||
};
|
||||
module_platform_driver(gen_pci_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Generic PCI host controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -290,4 +290,5 @@ static void __exit altera_msi_exit(void)
|
||||
subsys_initcall(altera_msi_init);
|
||||
MODULE_DEVICE_TABLE(of, altera_msi_of_match);
|
||||
module_exit(altera_msi_exit);
|
||||
MODULE_DESCRIPTION("Altera PCIe MSI support driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -826,4 +826,5 @@ static struct platform_driver altera_pcie_driver = {
|
||||
|
||||
MODULE_DEVICE_TABLE(of, altera_pcie_of_match);
|
||||
module_platform_driver(altera_pcie_driver);
|
||||
MODULE_DESCRIPTION("Altera PCIe host controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -839,4 +839,5 @@ static struct platform_driver apple_pcie_driver = {
|
||||
};
|
||||
module_platform_driver(apple_pcie_driver);
|
||||
|
||||
MODULE_DESCRIPTION("Apple PCIe host bridge driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -1091,4 +1091,5 @@ static struct platform_driver mtk_pcie_driver = {
|
||||
};
|
||||
|
||||
module_platform_driver(mtk_pcie_driver);
|
||||
MODULE_DESCRIPTION("MediaTek Gen3 PCIe host controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -1252,4 +1252,5 @@ static struct platform_driver mtk_pcie_driver = {
|
||||
},
|
||||
};
|
||||
module_platform_driver(mtk_pcie_driver);
|
||||
MODULE_DESCRIPTION("MediaTek PCIe host controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -549,4 +549,5 @@ static struct platform_driver mt7621_pcie_driver = {
|
||||
};
|
||||
builtin_platform_driver(mt7621_pcie_driver);
|
||||
|
||||
MODULE_DESCRIPTION("MediaTek MT7621 PCIe host controller driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -1128,5 +1128,6 @@ static struct pci_driver vmd_drv = {
|
||||
module_pci_driver(vmd_drv);
|
||||
|
||||
MODULE_AUTHOR("Intel Corporation");
|
||||
MODULE_DESCRIPTION("Volume Management Device driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
MODULE_VERSION("0.6");
|
||||
|
Loading…
Reference in New Issue
Block a user