- Fix a comment and remove a superfluous extern.

svn path=/trunk/; revision=47625
This commit is contained in:
Stefan Ginsberg 2010-06-06 14:42:03 +00:00
parent 5867b89ee6
commit 8e367dfc1b

View file

@ -42,7 +42,6 @@ NTAPI
MiDbgTranslatePhysicalAddress(IN ULONG64 PhysicalAddress,
IN ULONG Flags)
{
extern MMPTE ValidKernelPte;
PFN_NUMBER Pfn;
MMPTE TempPte;
PVOID MappingBaseAddress;
@ -83,7 +82,7 @@ MiDbgTranslatePhysicalAddress(IN ULONG64 PhysicalAddress,
MappingBaseAddress = MiPteToAddress(MmDebugPte);
//
//
// Get the template
//
TempPte = ValidKernelPte;