stos: knot: Fix up knot reasons for consistency
Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
@@ -112,7 +112,7 @@ HalRaiseIrql(IRQL Irql)
|
||||
|
||||
CurrentIrql = HalGetIrql();
|
||||
if (Irql < CurrentIrql) {
|
||||
KeKnot(IRQL_NOT_GTE, "got bad irql\n");
|
||||
KeKnot(KNOT_IRQL_NOT_GTE, "got bad irql\n");
|
||||
}
|
||||
|
||||
SetIrql(Irql);
|
||||
@@ -126,7 +126,7 @@ HalLowerIrql(IRQL Irql)
|
||||
|
||||
CurrentIrql = HalGetIrql();
|
||||
if (Irql > CurrentIrql) {
|
||||
KeKnot(IRQL_NOT_LTE, "got bad irql\n");
|
||||
KeKnot(KNOT_IRQL_NOT_LTE, "got bad irql\n");
|
||||
}
|
||||
|
||||
return CurrentIrql;
|
||||
|
||||
Reference in New Issue
Block a user