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 = {
415415 .name = DRV_NAME ,
416416 },
417417 .probe = cros_ec_chardev_probe ,
418- .remove_new = cros_ec_chardev_remove ,
418+ .remove = cros_ec_chardev_remove ,
419419 .id_table = cros_ec_chardev_id ,
420420};
421421
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ static struct platform_driver cros_ec_debugfs_driver = {
582582 .probe_type = PROBE_PREFER_ASYNCHRONOUS ,
583583 },
584584 .probe = cros_ec_debugfs_probe ,
585- .remove_new = cros_ec_debugfs_remove ,
585+ .remove = cros_ec_debugfs_remove ,
586586 .id_table = cros_ec_debugfs_id ,
587587};
588588
Original file line number Diff line number Diff line change @@ -608,7 +608,7 @@ static struct platform_driver cros_ec_lightbar_driver = {
608608 .probe_type = PROBE_PREFER_ASYNCHRONOUS ,
609609 },
610610 .probe = cros_ec_lightbar_probe ,
611- .remove_new = cros_ec_lightbar_remove ,
611+ .remove = cros_ec_lightbar_remove ,
612612 .id_table = cros_ec_lightbar_id ,
613613};
614614
Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ static struct platform_driver cros_ec_lpc_driver = {
783783 .probe_type = PROBE_FORCE_SYNCHRONOUS ,
784784 },
785785 .probe = cros_ec_lpc_probe ,
786- .remove_new = cros_ec_lpc_remove ,
786+ .remove = cros_ec_lpc_remove ,
787787};
788788
789789static 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 = {
359359 .name = DRV_NAME ,
360360 },
361361 .probe = cros_ec_sysfs_probe ,
362- .remove_new = cros_ec_sysfs_remove ,
362+ .remove = cros_ec_sysfs_remove ,
363363 .id_table = cros_ec_sysfs_id ,
364364};
365365
Original file line number Diff line number Diff line change @@ -1326,7 +1326,7 @@ static struct platform_driver cros_typec_driver = {
13261326 .pm = & cros_typec_pm_ops ,
13271327 },
13281328 .probe = cros_typec_probe ,
1329- .remove_new = cros_typec_remove ,
1329+ .remove = cros_typec_remove ,
13301330};
13311331
13321332module_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 = {
145145 .name = DRV_NAME ,
146146 },
147147 .probe = cros_ec_vbc_probe ,
148- .remove_new = cros_ec_vbc_remove ,
148+ .remove = cros_ec_vbc_remove ,
149149 .id_table = cros_ec_vbc_id ,
150150};
151151
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ static struct platform_driver cros_typec_switch_driver = {
318318 .acpi_match_table = ACPI_PTR (cros_typec_switch_acpi_id ),
319319 },
320320 .probe = cros_typec_switch_probe ,
321- .remove_new = cros_typec_switch_remove ,
321+ .remove = cros_typec_switch_remove ,
322322};
323323
324324module_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 = {
262262 .pm = & cros_usbpd_logger_pm_ops ,
263263 },
264264 .probe = cros_usbpd_logger_probe ,
265- .remove_new = cros_usbpd_logger_remove ,
265+ .remove = cros_usbpd_logger_remove ,
266266 .id_table = cros_usbpd_logger_id ,
267267};
268268
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ static struct platform_driver cros_usbpd_notify_acpi_driver = {
156156 .acpi_match_table = cros_usbpd_notify_acpi_device_ids ,
157157 },
158158 .probe = cros_usbpd_notify_probe_acpi ,
159- .remove_new = cros_usbpd_notify_remove_acpi ,
159+ .remove = cros_usbpd_notify_remove_acpi ,
160160};
161161
162162#endif /* CONFIG_ACPI */
@@ -230,7 +230,7 @@ static struct platform_driver cros_usbpd_notify_plat_driver = {
230230 .name = DRV_NAME ,
231231 },
232232 .probe = cros_usbpd_notify_probe_plat ,
233- .remove_new = cros_usbpd_notify_remove_plat ,
233+ .remove = cros_usbpd_notify_remove_plat ,
234234 .id_table = cros_usbpd_notify_id ,
235235};
236236
You can’t perform that action at this time.
0 commit comments