File tree Expand file tree Collapse file tree 13 files changed +14
-14
lines changed Expand file tree Collapse file tree 13 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -415,7 +415,7 @@ static struct platform_driver cros_ec_chardev_driver = {
415
415
.name = DRV_NAME ,
416
416
},
417
417
.probe = cros_ec_chardev_probe ,
418
- .remove_new = cros_ec_chardev_remove ,
418
+ .remove = cros_ec_chardev_remove ,
419
419
.id_table = cros_ec_chardev_id ,
420
420
};
421
421
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ static struct platform_driver cros_ec_debugfs_driver = {
582
582
.probe_type = PROBE_PREFER_ASYNCHRONOUS ,
583
583
},
584
584
.probe = cros_ec_debugfs_probe ,
585
- .remove_new = cros_ec_debugfs_remove ,
585
+ .remove = cros_ec_debugfs_remove ,
586
586
.id_table = cros_ec_debugfs_id ,
587
587
};
588
588
Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ static struct platform_driver cros_ec_lightbar_driver = {
608
608
.probe_type = PROBE_PREFER_ASYNCHRONOUS ,
609
609
},
610
610
.probe = cros_ec_lightbar_probe ,
611
- .remove_new = cros_ec_lightbar_remove ,
611
+ .remove = cros_ec_lightbar_remove ,
612
612
.id_table = cros_ec_lightbar_id ,
613
613
};
614
614
Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ static struct platform_driver cros_ec_lpc_driver = {
783
783
.probe_type = PROBE_FORCE_SYNCHRONOUS ,
784
784
},
785
785
.probe = cros_ec_lpc_probe ,
786
- .remove_new = cros_ec_lpc_remove ,
786
+ .remove = cros_ec_lpc_remove ,
787
787
};
788
788
789
789
static struct platform_device cros_ec_lpc_device = {
Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ static struct platform_driver cros_ec_sysfs_driver = {
359
359
.name = DRV_NAME ,
360
360
},
361
361
.probe = cros_ec_sysfs_probe ,
362
- .remove_new = cros_ec_sysfs_remove ,
362
+ .remove = cros_ec_sysfs_remove ,
363
363
.id_table = cros_ec_sysfs_id ,
364
364
};
365
365
Original file line number Diff line number Diff line change @@ -1326,7 +1326,7 @@ static struct platform_driver cros_typec_driver = {
1326
1326
.pm = & cros_typec_pm_ops ,
1327
1327
},
1328
1328
.probe = cros_typec_probe ,
1329
- .remove_new = cros_typec_remove ,
1329
+ .remove = cros_typec_remove ,
1330
1330
};
1331
1331
1332
1332
module_platform_driver (cros_typec_driver );
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ static struct platform_driver cros_ec_vbc_driver = {
145
145
.name = DRV_NAME ,
146
146
},
147
147
.probe = cros_ec_vbc_probe ,
148
- .remove_new = cros_ec_vbc_remove ,
148
+ .remove = cros_ec_vbc_remove ,
149
149
.id_table = cros_ec_vbc_id ,
150
150
};
151
151
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ static struct platform_driver cros_typec_switch_driver = {
318
318
.acpi_match_table = ACPI_PTR (cros_typec_switch_acpi_id ),
319
319
},
320
320
.probe = cros_typec_switch_probe ,
321
- .remove_new = cros_typec_switch_remove ,
321
+ .remove = cros_typec_switch_remove ,
322
322
};
323
323
324
324
module_platform_driver (cros_typec_switch_driver );
Original file line number Diff line number Diff line change @@ -262,7 +262,7 @@ static struct platform_driver cros_usbpd_logger_driver = {
262
262
.pm = & cros_usbpd_logger_pm_ops ,
263
263
},
264
264
.probe = cros_usbpd_logger_probe ,
265
- .remove_new = cros_usbpd_logger_remove ,
265
+ .remove = cros_usbpd_logger_remove ,
266
266
.id_table = cros_usbpd_logger_id ,
267
267
};
268
268
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ static struct platform_driver cros_usbpd_notify_acpi_driver = {
156
156
.acpi_match_table = cros_usbpd_notify_acpi_device_ids ,
157
157
},
158
158
.probe = cros_usbpd_notify_probe_acpi ,
159
- .remove_new = cros_usbpd_notify_remove_acpi ,
159
+ .remove = cros_usbpd_notify_remove_acpi ,
160
160
};
161
161
162
162
#endif /* CONFIG_ACPI */
@@ -230,7 +230,7 @@ static struct platform_driver cros_usbpd_notify_plat_driver = {
230
230
.name = DRV_NAME ,
231
231
},
232
232
.probe = cros_usbpd_notify_probe_plat ,
233
- .remove_new = cros_usbpd_notify_remove_plat ,
233
+ .remove = cros_usbpd_notify_remove_plat ,
234
234
.id_table = cros_usbpd_notify_id ,
235
235
};
236
236
You can’t perform that action at this time.
0 commit comments