[ACPI] Return success even if AcpiInterfaceNotificationsRegister is not implemented

Drivers calling this function still won't be notified in case of event,
but they will at least succeed their initialization.

CORE-18309
This commit is contained in:
Hervé Poussineau 2024-02-01 10:02:36 +01:00
parent 7f1025dcce
commit 913235952c

View file

@ -79,7 +79,7 @@ AcpiInterfaceNotificationsRegister(PDEVICE_OBJECT Context,
{
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
return STATUS_SUCCESS;
}
VOID