mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
Until the kernel handle support is finished or bootvid support is rewritten not to use driver objects open & close the handle every time (in the correct context).
svn path=/trunk/; revision=20035
This commit is contained in:
@@ -119,7 +119,7 @@ InbvEnableBootDriver(IN BOOLEAN Enable)
|
||||
/* Notify the hal we will acquire the display. */
|
||||
HalAcquireDisplayOwnership(InbvResetDisplayParameters);
|
||||
|
||||
Status = NtDeviceIoControlFile(BootVidDevice,
|
||||
Status = ZwDeviceIoControlFile(BootVidDevice,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
@@ -138,7 +138,7 @@ InbvEnableBootDriver(IN BOOLEAN Enable)
|
||||
}
|
||||
else
|
||||
{
|
||||
Status = NtDeviceIoControlFile(BootVidDevice,
|
||||
Status = ZwDeviceIoControlFile(BootVidDevice,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
@@ -155,10 +155,10 @@ InbvEnableBootDriver(IN BOOLEAN Enable)
|
||||
BootVidDriverInstalled = FALSE;
|
||||
/* Notify the hal we have released the display. */
|
||||
HalReleaseDisplayOwnership();
|
||||
|
||||
NtClose(BootVidDevice);
|
||||
BootVidDevice = NULL;
|
||||
}
|
||||
|
||||
ZwClose(BootVidDevice);
|
||||
BootVidDevice = NULL;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user