diff options
| author | Uwe Kleine-König <[email protected]> | 2024-10-07 20:58:04 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2024-10-11 06:13:28 +0000 |
| commit | 5cbb9b1705ab8d98ed96affa4ec399023a22b755 (patch) | |
| tree | ab27da97c1cc415ed80f89ae16b35359f49a6915 /drivers/tty/serial/esp32_acm.c | |
| parent | Linux 6.12-rc2 (diff) | |
| download | kernel-5cbb9b1705ab8d98ed96affa4ec399023a22b755.tar.gz kernel-5cbb9b1705ab8d98ed96affa4ec399023a22b755.zip | |
serial: 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/tty/serial 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: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/tty/serial/esp32_acm.c')
| -rw-r--r-- | drivers/tty/serial/esp32_acm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/esp32_acm.c b/drivers/tty/serial/esp32_acm.c index 85eb0392e379..bb7cc65427f0 100644 --- a/drivers/tty/serial/esp32_acm.c +++ b/drivers/tty/serial/esp32_acm.c @@ -423,7 +423,7 @@ static void esp32s3_acm_remove(struct platform_device *pdev) static struct platform_driver esp32s3_acm_driver = { .probe = esp32s3_acm_probe, - .remove_new = esp32s3_acm_remove, + .remove = esp32s3_acm_remove, .driver = { .name = DRIVER_NAME, .of_match_table = esp32s3_acm_dt_ids, |
