diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-10-27 19:03:14 +0100 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2024-11-06 14:16:20 +0000 |
commit | 845fd2cbedaf299ee61680a678b279dfeb6fe77c (patch) | |
tree | 69998d67f1c24e04c262bcd6974685c8dff56eb2 /drivers/perf/xgene_pmu.c | |
parent | 9643aaa194737b1ad73f9da6e51fc63d1c7a864a (diff) | |
download | lwn-845fd2cbedaf299ee61680a678b279dfeb6fe77c.tar.gz lwn-845fd2cbedaf299ee61680a678b279dfeb6fe77c.zip |
perf: 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 platform drivers below drivers/perf 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.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20241027180313.410964-2-u.kleine-koenig@baylibre.com
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'drivers/perf/xgene_pmu.c')
-rw-r--r-- | drivers/perf/xgene_pmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/perf/xgene_pmu.c b/drivers/perf/xgene_pmu.c index c01466ae1e3d..33b5497bdc06 100644 --- a/drivers/perf/xgene_pmu.c +++ b/drivers/perf/xgene_pmu.c @@ -1943,7 +1943,7 @@ static void xgene_pmu_remove(struct platform_device *pdev) static struct platform_driver xgene_pmu_driver = { .probe = xgene_pmu_probe, - .remove_new = xgene_pmu_remove, + .remove = xgene_pmu_remove, .driver = { .name = "xgene-pmu", .of_match_table = xgene_pmu_of_match, |