Little correction about KPAGESIZE
This commit is contained in:
parent
59f3f24d0a
commit
3bbfa136eb
|
@ -160,7 +160,8 @@ void IoInitPCI()
|
||||||
IoPciEnumerate();
|
IoPciEnumerate();
|
||||||
|
|
||||||
// Give R/W access to the configuration space
|
// Give R/W access to the configuration space
|
||||||
for(int i=0; i < 65536; i++) // 65536 = 256 * 32 * 8
|
int maxI = (256 * 32 * 8 * 4096) / KPAGESIZE;
|
||||||
|
for(int i=0; i < maxI; i++)
|
||||||
{
|
{
|
||||||
MmMapPage((void *)((ulong)pciConfigBaseAddress + i * KPAGESIZE),
|
MmMapPage((void *)((ulong)pciConfigBaseAddress + i * KPAGESIZE),
|
||||||
(void *)((ulong)pciConfigBaseAddress + i * KPAGESIZE),
|
(void *)((ulong)pciConfigBaseAddress + i * KPAGESIZE),
|
||||||
|
|
Loading…
Reference in New Issue