mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[PARPORT] Fix I/O port length check
The Standard Parallel Port (SPP) has 3 registers, not 4: data, status, control This fixes the driver on the Compaq N600c laptop
This commit is contained in:
parent
f26754e6dd
commit
ba09834c5e
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ FdoStartDevice(IN PDEVICE_OBJECT DeviceObject,
|
|||
|
||||
if (DeviceExtension->BaseAddress == 0)
|
||||
{
|
||||
if (PartialDescriptor->u.Port.Length < 4)
|
||||
if (PartialDescriptor->u.Port.Length < 3)
|
||||
return STATUS_INSUFFICIENT_RESOURCES;
|
||||
|
||||
DeviceExtension->BaseAddress = PartialDescriptor->u.Port.Start.u.LowPart;
|
||||
|
|
Loading…
Reference in a new issue