#ifdef CONFIG_ACPI_HOTPLUG_CPU
 /* Removal */
-static void acpi_processor_remove(struct acpi_device *device)
+static void acpi_processor_post_eject(struct acpi_device *device)
 {
        struct acpi_processor *pr;
 
        .ids = processor_device_ids,
        .attach = acpi_processor_add,
 #ifdef CONFIG_ACPI_HOTPLUG_CPU
-       .detach = acpi_processor_remove,
+       .post_eject = acpi_processor_post_eject,
 #endif
        .hotplug = {
                .enabled = true,
 
 }
 
 #define ACPI_SCAN_CHECK_FLAG_STATUS    BIT(0)
+#define ACPI_SCAN_CHECK_FLAG_EJECT     BIT(1)
 
 static int acpi_scan_check_and_detach(struct acpi_device *adev, void *p)
 {
        if (handler) {
                if (handler->detach)
                        handler->detach(adev);
-
-               adev->handler = NULL;
        } else {
                device_release_driver(&adev->dev);
        }
         */
        acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
        adev->flags.initialized = false;
+
+       /* For eject this is deferred to acpi_bus_post_eject() */
+       if (!(flags & ACPI_SCAN_CHECK_FLAG_EJECT)) {
+               adev->handler = NULL;
+               acpi_device_clear_enumerated(adev);
+       }
+       return 0;
+}
+
+static int acpi_bus_post_eject(struct acpi_device *adev, void *not_used)
+{
+       struct acpi_scan_handler *handler = adev->handler;
+
+       acpi_dev_for_each_child_reverse(adev, acpi_bus_post_eject, NULL);
+
+       if (handler) {
+               if (handler->post_eject)
+                       handler->post_eject(adev);
+
+               adev->handler = NULL;
+       }
+
        acpi_device_clear_enumerated(adev);
 
        return 0;
        acpi_handle handle = device->handle;
        unsigned long long sta;
        acpi_status status;
+       uintptr_t flags = ACPI_SCAN_CHECK_FLAG_EJECT;
 
        if (device->handler && device->handler->hotplug.demand_offline) {
                if (!acpi_scan_is_offline(device, true))
 
        acpi_handle_debug(handle, "Ejecting\n");
 
-       acpi_bus_trim(device);
+       acpi_scan_check_and_detach(device, (void *)flags);
 
        acpi_evaluate_lck(handle, 0);
        /*
        } else if (sta & ACPI_STA_DEVICE_ENABLED) {
                acpi_handle_warn(handle,
                        "Eject incomplete - status 0x%llx\n", sta);
+       } else {
+               acpi_bus_post_eject(device, NULL);
        }
 
        return 0;
 
        bool (*match)(const char *idstr, const struct acpi_device_id **matchid);
        int (*attach)(struct acpi_device *dev, const struct acpi_device_id *id);
        void (*detach)(struct acpi_device *dev);
+       void (*post_eject)(struct acpi_device *dev);
        void (*bind)(struct device *phys_dev);
        void (*unbind)(struct device *phys_dev);
        struct acpi_hotplug_profile hotplug;