diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-10-07 18:35:17 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-10-08 21:47:18 +0200 |
commit | 01ecc142ef7c8c5081a39be81c1d8ab7c10dd7b8 (patch) | |
tree | cab7598a6d1214068ee6cb12796137991297a603 /drivers/video/fbdev/via/via-gpio.c | |
parent | Linux 6.12-rc2 (diff) | |
download | linux-01ecc142ef7c8c5081a39be81c1d8ab7c10dd7b8.tar.xz linux-01ecc142ef7c8c5081a39be81c1d8ab7c10dd7b8.zip |
fbdev: 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/video/fbdev 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.
While touching these files, make indention of the struct initializer
consistent in several files.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video/fbdev/via/via-gpio.c')
-rw-r--r-- | drivers/video/fbdev/via/via-gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/via/via-gpio.c b/drivers/video/fbdev/via/via-gpio.c index 2719943c06f4..9577c2cd52c7 100644 --- a/drivers/video/fbdev/via/via-gpio.c +++ b/drivers/video/fbdev/via/via-gpio.c @@ -292,7 +292,7 @@ static struct platform_driver via_gpio_driver = { .name = "viafb-gpio", }, .probe = viafb_gpio_probe, - .remove_new = viafb_gpio_remove, + .remove = viafb_gpio_remove, }; int viafb_gpio_init(void) |