[NTOS:KD] Remove 'support' for Pice. It was only setting a flag.

This commit is contained in:
Hervé Poussineau 2020-03-28 10:42:17 +01:00
parent 0e391eecd1
commit 458f4edfd5
2 changed files with 0 additions and 15 deletions

View file

@ -218,9 +218,6 @@ typedef struct _KDP_DEBUG_MODE
UCHAR Serial :1;
UCHAR File :1;
UCHAR Bochs :1;
/* Currently Supported Wrappers */
UCHAR Pice :1;
};
/* Generic Value */

View file

@ -106,18 +106,6 @@ KdpGetDebugMode(PCHAR Currentp2)
p2 += 5;
KdpDebugMode.Bochs = TRUE;
}
/* Check for PICE Debugging */
else if (!_strnicmp(p2, "PICE", 4))
{
/* Enable it */
p2 += 4;
KdpDebugMode.Pice = TRUE;
/* Enable Debugging */
KdDebuggerNotPresent = FALSE;
KdDebuggerEnabled = TRUE;
SharedUserData->KdDebuggerEnabled = TRUE;
}
return p2;
}