aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/controller/pci-mvebu.c
diff options
context:
space:
mode:
authorSergio Paracuellos <[email protected]>2024-09-23 06:57:06 +0000
committerBjorn Helgaas <[email protected]>2024-10-03 21:44:49 +0000
commit3c87b3c85a5344098f239bf8fceee1db691e3a0c (patch)
tree9b78fcbb25d993b470520023446e5d167e9e833b /drivers/pci/controller/pci-mvebu.c
parentLinux 6.12-rc1 (diff)
downloadkernel-3c87b3c85a5344098f239bf8fceee1db691e3a0c.tar.gz
kernel-3c87b3c85a5344098f239bf8fceee1db691e3a0c.zip
PCI: controller: Switch back to struct platform_driver::remove()
After commit 0edb555a65d1 ("platform: Make platform_driver::remove() return void") .remove() is (again) the right callback to implement for platform drivers. Convert all PCI controller drivers to use .remove(), with the eventual goal to drop struct platform_driver::remove_new(). As .remove() and .remove_new() have the same prototypes, conversion is done by just changing the structure member name in the driver initializer. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Sergio Paracuellos <[email protected]> [bhelgaas: add pcie-xilinx-nwl.c and tidy whitespace per Uwe Kleine-König: https://lore.kernel.org/r/tdxrmmqyzcufupnwkdbg7lwgadizm7v3lxjirykijbml7x54ze@upbdzycdsilm] Signed-off-by: Bjorn Helgaas <[email protected]>
Diffstat (limited to 'drivers/pci/controller/pci-mvebu.c')
-rw-r--r--drivers/pci/controller/pci-mvebu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/pci-mvebu.c b/drivers/pci/controller/pci-mvebu.c
index 29fe09c99e7d..46d3afe1d308 100644
--- a/drivers/pci/controller/pci-mvebu.c
+++ b/drivers/pci/controller/pci-mvebu.c
@@ -1727,7 +1727,7 @@ static struct platform_driver mvebu_pcie_driver = {
.pm = &mvebu_pcie_pm_ops,
},
.probe = mvebu_pcie_probe,
- .remove_new = mvebu_pcie_remove,
+ .remove = mvebu_pcie_remove,
};
module_platform_driver(mvebu_pcie_driver);