diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2024-10-17 09:38:03 +0200 |
---|---|---|
committer | Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> | 2024-10-17 12:39:32 +0300 |
commit | 3ea5eb68b9d624935108b5e696859304edfac202 (patch) | |
tree | de2e3a3374f0148ee300f6035432a5a58d0988f3 /drivers/platform/x86/intel/bxtwc_tmu.c | |
parent | 7dd1233931271f4c7efd5456aaa6e8bb8f77b5e8 (diff) | |
download | linux-3ea5eb68b9d624935108b5e696859304edfac202.tar.gz linux-3ea5eb68b9d624935108b5e696859304edfac202.tar.bz2 linux-3ea5eb68b9d624935108b5e696859304edfac202.zip |
platform/x86: 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/platform/x86/ 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>
Link: https://lore.kernel.org/r/20241017073802.53235-2-u.kleine-koenig@baylibre.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86/intel/bxtwc_tmu.c')
-rw-r--r-- | drivers/platform/x86/intel/bxtwc_tmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel/bxtwc_tmu.c b/drivers/platform/x86/intel/bxtwc_tmu.c index d0e2a3c293b0..1aabd15e2714 100644 --- a/drivers/platform/x86/intel/bxtwc_tmu.c +++ b/drivers/platform/x86/intel/bxtwc_tmu.c @@ -131,7 +131,7 @@ MODULE_DEVICE_TABLE(platform, bxt_wcove_tmu_id_table); static struct platform_driver bxt_wcove_tmu_driver = { .probe = bxt_wcove_tmu_probe, - .remove_new = bxt_wcove_tmu_remove, + .remove = bxt_wcove_tmu_remove, .driver = { .name = "bxt_wcove_tmu", .pm = &bxtwc_tmu_pm_ops, |