Skip to content

Commit 13917b8

Browse files
author
Fox Snowpatch
committed
1 parent a85c72f commit 13917b8

12 files changed

+12
-12
lines changed

drivers/misc/atmel-ssc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ static struct platform_driver ssc_driver = {
269269
},
270270
.id_table = atmel_ssc_devtypes,
271271
.probe = ssc_probe,
272-
.remove_new = ssc_remove,
272+
.remove = ssc_remove,
273273
};
274274
module_platform_driver(ssc_driver);
275275

drivers/misc/cxl/of.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,6 @@ struct platform_driver cxl_of_driver = {
339339
.owner = THIS_MODULE
340340
},
341341
.probe = cxl_of_probe,
342-
.remove_new = cxl_of_remove,
342+
.remove = cxl_of_remove,
343343
.shutdown = cxl_of_shutdown,
344344
};

drivers/misc/fastrpc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2215,7 +2215,7 @@ static const struct of_device_id fastrpc_match_table[] = {
22152215

22162216
static struct platform_driver fastrpc_cb_driver = {
22172217
.probe = fastrpc_cb_probe,
2218-
.remove_new = fastrpc_cb_remove,
2218+
.remove = fastrpc_cb_remove,
22192219
.driver = {
22202220
.name = "qcom,fastrpc-cb",
22212221
.of_match_table = fastrpc_match_table,

drivers/misc/hisi_hikey_usb.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ MODULE_DEVICE_TABLE(of, id_table_hisi_hikey_usb);
260260

261261
static struct platform_driver hisi_hikey_usb_driver = {
262262
.probe = hisi_hikey_usb_probe,
263-
.remove_new = hisi_hikey_usb_remove,
263+
.remove = hisi_hikey_usb_remove,
264264
.driver = {
265265
.name = DEVICE_DRIVER_NAME,
266266
.of_match_table = id_table_hisi_hikey_usb,

drivers/misc/mei/platform-vsc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ MODULE_DEVICE_TABLE(platform, mei_vsc_id_table);
437437

438438
static struct platform_driver mei_vsc_drv = {
439439
.probe = mei_vsc_probe,
440-
.remove_new = mei_vsc_remove,
440+
.remove = mei_vsc_remove,
441441
.id_table = mei_vsc_id_table,
442442
.driver = {
443443
.name = MEI_VSC_DRV_NAME,

drivers/misc/open-dice.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ static const struct of_device_id open_dice_of_match[] = {
178178
};
179179

180180
static struct platform_driver open_dice_driver = {
181-
.remove_new = open_dice_remove,
181+
.remove = open_dice_remove,
182182
.driver = {
183183
.name = DRIVER_NAME,
184184
.of_match_table = open_dice_of_match,

drivers/misc/sram.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ static struct platform_driver sram_driver = {
451451
.of_match_table = sram_dt_ids,
452452
},
453453
.probe = sram_probe,
454-
.remove_new = sram_remove,
454+
.remove = sram_remove,
455455
};
456456

457457
static int __init sram_init(void)

drivers/misc/tps6594-esm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ static struct platform_driver tps6594_esm_driver = {
135135
.pm = pm_sleep_ptr(&tps6594_esm_pm_ops),
136136
},
137137
.probe = tps6594_esm_probe,
138-
.remove_new = tps6594_esm_remove,
138+
.remove = tps6594_esm_remove,
139139
};
140140

141141
module_platform_driver(tps6594_esm_driver);

drivers/misc/tps6594-pfsm.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ static struct platform_driver tps6594_pfsm_driver = {
314314
.name = "tps6594-pfsm",
315315
},
316316
.probe = tps6594_pfsm_probe,
317-
.remove_new = tps6594_pfsm_remove,
317+
.remove = tps6594_pfsm_remove,
318318
};
319319

320320
module_platform_driver(tps6594_pfsm_driver);

drivers/misc/vcpu_stall_detector.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ MODULE_DEVICE_TABLE(of, vcpu_stall_detect_of_match);
233233

234234
static struct platform_driver vcpu_stall_detect_driver = {
235235
.probe = vcpu_stall_detect_probe,
236-
.remove_new = vcpu_stall_detect_remove,
236+
.remove = vcpu_stall_detect_remove,
237237
.driver = {
238238
.name = KBUILD_MODNAME,
239239
.of_match_table = vcpu_stall_detect_of_match,

drivers/misc/xilinx_sdfec.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1444,7 +1444,7 @@ static struct platform_driver xsdfec_driver = {
14441444
.of_match_table = xsdfec_of_match,
14451445
},
14461446
.probe = xsdfec_probe,
1447-
.remove_new = xsdfec_remove,
1447+
.remove = xsdfec_remove,
14481448
};
14491449

14501450
module_platform_driver(xsdfec_driver);

drivers/misc/xilinx_tmr_inject.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ static struct platform_driver xtmr_inject_driver = {
164164
.of_match_table = xtmr_inject_of_match,
165165
},
166166
.probe = xtmr_inject_probe,
167-
.remove_new = xtmr_inject_remove,
167+
.remove = xtmr_inject_remove,
168168
};
169169
module_platform_driver(xtmr_inject_driver);
170170
MODULE_AUTHOR("Advanced Micro Devices, Inc");

0 commit comments

Comments
 (0)