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-rcar.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-rcar.c')
| -rw-r--r-- | drivers/pwm/pwm-rcar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pwm/pwm-rcar.c b/drivers/pwm/pwm-rcar.c index 4cfecd88ede0..2261789cc27d 100644 --- a/drivers/pwm/pwm-rcar.c +++ b/drivers/pwm/pwm-rcar.c @@ -253,7 +253,7 @@ MODULE_DEVICE_TABLE(of, rcar_pwm_of_table); static struct platform_driver rcar_pwm_driver = { .probe = rcar_pwm_probe, - .remove_new = rcar_pwm_remove, + .remove = rcar_pwm_remove, .driver = { .name = "pwm-rcar", .of_match_table = rcar_pwm_of_table, |
