]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
PCI: acpiphp_ampere_altra: Switch back to struct platform_driver::remove()
authorSergio Paracuellos <sergio.paracuellos@gmail.com>
Fri, 27 Sep 2024 09:24:49 +0000 (11:24 +0200)
committerBjorn Helgaas <bhelgaas@google.com>
Thu, 3 Oct 2024 21:45:55 +0000 (16:45 -0500)
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/20240927092449.44628-1-sergio.paracuellos@gmail.com
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/hotplug/acpiphp_ampere_altra.c

index f5c9e741c1d419df746a7dfebc40c2aeb979a65e..70dbc0431fc69f62766356f28c5d0eb7aeb6e7b3 100644 (file)
@@ -119,7 +119,7 @@ static struct platform_driver altra_led_driver = {
                .acpi_match_table = altra_led_ids,
        },
        .probe = altra_led_probe,
-       .remove_new = altra_led_remove,
+       .remove = altra_led_remove,
 };
 module_platform_driver(altra_led_driver);