mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[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:
parent
7f1025dcce
commit
913235952c
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ AcpiInterfaceNotificationsRegister(PDEVICE_OBJECT Context,
|
|||
{
|
||||
UNIMPLEMENTED;
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
VOID
|
||||
|
|
Loading…
Reference in a new issue