hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/platform/chrome/cros_usbpd_notify.c
....@@ -284,7 +284,11 @@
284284 return ret;
285285
286286 #ifdef CONFIG_ACPI
287
- platform_driver_register(&cros_usbpd_notify_acpi_driver);
287
+ ret = platform_driver_register(&cros_usbpd_notify_acpi_driver);
288
+ if (ret) {
289
+ platform_driver_unregister(&cros_usbpd_notify_plat_driver);
290
+ return ret;
291
+ }
288292 #endif
289293 return 0;
290294 }