mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
wifi: Switch back to struct platform_driver::remove()
After commit 0edb555a65
("platform: Make platform_driver::remove()
return void") .remove() is (again) the right callback to implement for
platform drivers.
Convert all platform drivers below drivers/net/wireless 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.
En passant several whitespace changes are done to make indentation
consistent in the struct initializers.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
Acked-by: Arend van Spriel <arend.vanspriel@broadcom.com>
Acked-by: Jiri Slaby <jirislaby@kernel.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://patch.msgid.link/20241106170706.38922-2-u.kleine-koenig@baylibre.com
This commit is contained in:
parent
4fa4f049dc
commit
b41f96ecb9
@ -842,7 +842,7 @@ static struct platform_driver ath10k_ahb_driver = {
|
||||
.of_match_table = ath10k_ahb_of_match,
|
||||
},
|
||||
.probe = ath10k_ahb_probe,
|
||||
.remove_new = ath10k_ahb_remove,
|
||||
.remove = ath10k_ahb_remove,
|
||||
};
|
||||
|
||||
int ath10k_ahb_init(void)
|
||||
|
@ -1886,7 +1886,7 @@ static void ath10k_snoc_shutdown(struct platform_device *pdev)
|
||||
|
||||
static struct platform_driver ath10k_snoc_driver = {
|
||||
.probe = ath10k_snoc_probe,
|
||||
.remove_new = ath10k_snoc_remove,
|
||||
.remove = ath10k_snoc_remove,
|
||||
.shutdown = ath10k_snoc_shutdown,
|
||||
.driver = {
|
||||
.name = "ath10k_snoc",
|
||||
|
@ -1318,7 +1318,7 @@ static struct platform_driver ath11k_ahb_driver = {
|
||||
.of_match_table = ath11k_ahb_of_match,
|
||||
},
|
||||
.probe = ath11k_ahb_probe,
|
||||
.remove_new = ath11k_ahb_remove,
|
||||
.remove = ath11k_ahb_remove,
|
||||
.shutdown = ath11k_ahb_shutdown,
|
||||
};
|
||||
|
||||
|
@ -219,7 +219,7 @@ static void ath_ahb_remove(struct platform_device *pdev)
|
||||
|
||||
static struct platform_driver ath_ahb_driver = {
|
||||
.probe = ath_ahb_probe,
|
||||
.remove_new = ath_ahb_remove,
|
||||
.remove = ath_ahb_remove,
|
||||
.driver = {
|
||||
.name = "ar231x-wmac",
|
||||
},
|
||||
|
@ -159,7 +159,7 @@ static void ath_ahb_remove(struct platform_device *pdev)
|
||||
|
||||
static struct platform_driver ath_ahb_driver = {
|
||||
.probe = ath_ahb_probe,
|
||||
.remove_new = ath_ahb_remove,
|
||||
.remove = ath_ahb_remove,
|
||||
.driver = {
|
||||
.name = "ath9k",
|
||||
},
|
||||
|
@ -1680,7 +1680,7 @@ MODULE_DEVICE_TABLE(of, wcn36xx_of_match);
|
||||
|
||||
static struct platform_driver wcn36xx_driver = {
|
||||
.probe = wcn36xx_probe,
|
||||
.remove_new = wcn36xx_remove,
|
||||
.remove = wcn36xx_remove,
|
||||
.driver = {
|
||||
.name = "wcn36xx",
|
||||
.of_match_table = wcn36xx_of_match,
|
||||
|
@ -594,7 +594,7 @@ static void brcmf_common_pd_remove(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
static struct platform_driver brcmf_pd = {
|
||||
.remove_new = brcmf_common_pd_remove,
|
||||
.remove = brcmf_common_pd_remove,
|
||||
.driver = {
|
||||
.name = BRCMFMAC_PDATA_NAME,
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ MODULE_FIRMWARE(MT7628_FIRMWARE_E2);
|
||||
|
||||
struct platform_driver mt76_wmac_driver = {
|
||||
.probe = mt76_wmac_probe,
|
||||
.remove_new = mt76_wmac_remove,
|
||||
.remove = mt76_wmac_remove,
|
||||
.driver = {
|
||||
.name = "mt76_wmac",
|
||||
.of_match_table = of_wmac_match,
|
||||
|
@ -63,7 +63,7 @@ struct platform_driver mt7622_wmac_driver = {
|
||||
.of_match_table = mt7622_wmac_of_match,
|
||||
},
|
||||
.probe = mt7622_wmac_probe,
|
||||
.remove_new = mt7622_wmac_remove,
|
||||
.remove = mt7622_wmac_remove,
|
||||
};
|
||||
|
||||
MODULE_FIRMWARE(MT7622_FIRMWARE_N9);
|
||||
|
@ -1303,7 +1303,7 @@ struct platform_driver mt798x_wmac_driver = {
|
||||
.of_match_table = mt798x_wmac_of_match,
|
||||
},
|
||||
.probe = mt798x_wmac_probe,
|
||||
.remove_new = mt798x_wmac_remove,
|
||||
.remove = mt798x_wmac_remove,
|
||||
};
|
||||
|
||||
MODULE_FIRMWARE(MT7986_FIRMWARE_WA);
|
||||
|
@ -1939,7 +1939,7 @@ MODULE_DEVICE_TABLE(platform, wl12xx_id_table);
|
||||
|
||||
static struct platform_driver wl12xx_driver = {
|
||||
.probe = wl12xx_probe,
|
||||
.remove_new = wl12xx_remove,
|
||||
.remove = wl12xx_remove,
|
||||
.id_table = wl12xx_id_table,
|
||||
.driver = {
|
||||
.name = "wl12xx_driver",
|
||||
|
@ -2097,7 +2097,7 @@ MODULE_DEVICE_TABLE(platform, wl18xx_id_table);
|
||||
|
||||
static struct platform_driver wl18xx_driver = {
|
||||
.probe = wl18xx_probe,
|
||||
.remove_new = wlcore_remove,
|
||||
.remove = wlcore_remove,
|
||||
.id_table = wl18xx_id_table,
|
||||
.driver = {
|
||||
.name = "wl18xx_driver",
|
||||
|
Loading…
Reference in New Issue
Block a user