1
0
mirror of https://gitlab.os-k.eu/os-k-team/os-k.git synced 2023-08-25 14:03:10 +02:00

Little correction about KPAGESIZE

This commit is contained in:
Antoine Cure 2020-02-13 15:32:20 +01:00
parent 59f3f24d0a
commit 3bbfa136eb
No known key found for this signature in database
GPG Key ID: DCA412F83BD81F24

View File

@ -160,7 +160,8 @@ void IoInitPCI()
IoPciEnumerate();
// 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),
(void *)((ulong)pciConfigBaseAddress + i * KPAGESIZE),