diff options
| author | Uwe Kleine-König <[email protected]> | 2024-09-09 07:31:24 +0000 |
|---|---|---|
| committer | Uwe Kleine-König <[email protected]> | 2024-09-16 13:24:59 +0000 |
| commit | 8db7fdffaaf6cc9f21be5f601c7ef12b173074a5 (patch) | |
| tree | 4b83c3ec8e86db9703f5d9af2d6f353e4f8b48cb /drivers/pwm/pwm-sifive.c | |
| parent | dt-bindings: pwm: allwinner,sun4i-a10-pwm: add top-level constraints (diff) | |
| download | kernel-8db7fdffaaf6cc9f21be5f601c7ef12b173074a5.tar.gz kernel-8db7fdffaaf6cc9f21be5f601c7ef12b173074a5.zip | |
pwm: 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 pwm 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.
Signed-off-by: Uwe Kleine-König <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Uwe Kleine-König <[email protected]>
Diffstat (limited to 'drivers/pwm/pwm-sifive.c')
| -rw-r--r-- | drivers/pwm/pwm-sifive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-sifive.c b/drivers/pwm/pwm-sifive.c index ed7957cc51fd..d5b647e6be78 100644 --- a/drivers/pwm/pwm-sifive.c +++ b/drivers/pwm/pwm-sifive.c @@ -336,7 +336,7 @@ MODULE_DEVICE_TABLE(of, pwm_sifive_of_match); static struct platform_driver pwm_sifive_driver = { .probe = pwm_sifive_probe, - .remove_new = pwm_sifive_remove, + .remove = pwm_sifive_remove, .driver = { .name = "pwm-sifive", .of_match_table = pwm_sifive_of_match, |
