diff options
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r-- | drivers/acpi/scan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 7b90900b2118..408ebde18986 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
@@ -370,7 +370,8 @@ static acpi_status acpi_device_notify_fixed(void *data) | |||
370 | { | 370 | { |
371 | struct acpi_device *device = data; | 371 | struct acpi_device *device = data; |
372 | 372 | ||
373 | acpi_device_notify(device->handle, ACPI_FIXED_HARDWARE_EVENT, device); | 373 | /* Fixed hardware devices have no handles */ |
374 | acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device); | ||
374 | return AE_OK; | 375 | return AE_OK; |
375 | } | 376 | } |
376 | 377 | ||