- Re-enable some debug prints for unsupported hardware features and make them consistent.

svn path=/trunk/; revision=43829
This commit is contained in:
Stefan Ginsberg 2009-10-29 18:26:22 +00:00
parent bec72fa6a7
commit 24bb32e038
4 changed files with 6 additions and 5 deletions

View file

@ -40,7 +40,7 @@ KiInitMachineDependent(VOID)
if (KeFeatureBits & KF_LARGE_PAGE)
{
/* FIXME: Support this */
DPRINT("Large Page support detected but not yet taken advantage of!\n");
DPRINT1("Large Page support detected but not yet taken advantage of\n");
}
/* Check for global page support */

View file

@ -21,7 +21,7 @@ NTAPI
KiInitializeMTRR(IN BOOLEAN FinalCpu)
{
/* FIXME: Support this */
DPRINT("Your machine supports MTRR but ReactOS doesn't yet.\n");
DPRINT1("MTRR support detected but not yet taken advantage of\n");
}
VOID
@ -29,5 +29,5 @@ NTAPI
KiAmdK6InitializeMTRR(VOID)
{
/* FIXME: Support this */
DPRINT("Your machine supports AMD MTRR but ReactOS doesn't yet.\n");
DPRINT1("AMD MTRR support detected but not yet taken advantage of\n");
}

View file

@ -59,5 +59,5 @@ NTAPI
KiInitializePAT(VOID)
{
/* FIXME: Support this */
DPRINT("Advanced Memory features detected but not yet taken advantage of.\n");
DPRINT1("PAT support detected but not yet taken advantage of\n");
}

View file

@ -22,7 +22,8 @@ VOID
NTAPI
Ki386VdmEnablePentiumExtentions(VOID)
{
DPRINT("VME detected but not yet supported\n");
/* FIXME: Support this */
DPRINT1("VME support detected but not yet taken advantage of\n");
}
VOID