mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[ISAPNP] Force clear the upper reserved bits on fixed I/O descriptors
CORE-18562
This commit is contained in:
parent
991dbeff53
commit
9b7f34601a
1 changed files with 3 additions and 0 deletions
|
@ -888,6 +888,9 @@ ParseTags(
|
||||||
PeekCached(ResourceData, &Temp, TagLen);
|
PeekCached(ResourceData, &Temp, TagLen);
|
||||||
ResourceData += TagLen;
|
ResourceData += TagLen;
|
||||||
|
|
||||||
|
/* Save the address bits [0:9] */
|
||||||
|
Temp.IoBase &= ((1 << 10) - 1);
|
||||||
|
|
||||||
Description->Information = 0;
|
Description->Information = 0;
|
||||||
Description->Minimum =
|
Description->Minimum =
|
||||||
Description->Maximum = Temp.IoBase;
|
Description->Maximum = Temp.IoBase;
|
||||||
|
|
Loading…
Reference in a new issue