mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[NTOSKRNL]
Implement the MiWriteCombined case of MmMapIoSpace(). This fixes NVIDIA display drivers loading in ReactOS. See: https://www.reactos.org/forum/viewtopic.php?p=120359#p120359 svn path=/trunk/; revision=70774
This commit is contained in:
parent
3283c55709
commit
7c336358c8
1 changed files with 3 additions and 2 deletions
|
@ -144,9 +144,10 @@ MmMapIoSpace(IN PHYSICAL_ADDRESS PhysicalAddress,
|
||||||
case MiWriteCombined:
|
case MiWriteCombined:
|
||||||
|
|
||||||
//
|
//
|
||||||
// We don't support write combining yet
|
// Disable the cache and allow combined writing
|
||||||
//
|
//
|
||||||
ASSERT(FALSE);
|
MI_PAGE_DISABLE_CACHE(&TempPte);
|
||||||
|
MI_PAGE_WRITE_COMBINED(&TempPte);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue