mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[PARPORT]
Reduce the minimum I/O-Range size for parallel ports to 4. This fixes port detection on VMware. Found by Colin Finck. svn path=/trunk/; revision=68579
This commit is contained in:
@@ -161,7 +161,7 @@ FdoStartDevice(IN PDEVICE_OBJECT DeviceObject,
|
||||
|
||||
if (DeviceExtension->BaseAddress == 0)
|
||||
{
|
||||
if (PartialDescriptor->u.Port.Length < 8)
|
||||
if (PartialDescriptor->u.Port.Length < 4)
|
||||
return STATUS_INSUFFICIENT_RESOURCES;
|
||||
|
||||
DeviceExtension->BaseAddress = PartialDescriptor->u.Port.Start.u.LowPart;
|
||||
|
||||
Reference in New Issue
Block a user