Remove "WARNING:" prefix from SYSFAIL and ACFAIL messages, so that, in case
authormiod <miod@openbsd.org>
Sat, 17 May 2014 12:20:55 +0000 (12:20 +0000)
committermiod <miod@openbsd.org>
Sat, 17 May 2014 12:20:55 +0000 (12:20 +0000)
of ACFAIL, what reaches the console is explicit enough.

sys/arch/aviion/dev/syscon.c

index dda8c30..ea3851b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: syscon.c,v 1.9 2014/05/08 22:17:33 miod Exp $ */
+/*     $OpenBSD: syscon.c,v 1.10 2014/05/17 12:20:55 miod Exp $ */
 /*
  * Copyright (c) 2007 Miodrag Vallat.
  *
@@ -209,7 +209,7 @@ int
 sysconsysfail(void *eframe)
 {
        *(volatile u_int32_t *)AV_CLRINT = ISTATE_SYSFAIL;
-       printf("WARNING: SYSFAIL* ASSERTED\n");
+       printf("SYSFAIL* ASSERTED\n");
        return (1);
 }
 
@@ -217,6 +217,6 @@ int
 sysconacfail(void *eframe)
 {
        *(volatile u_int32_t *)AV_CLRINT = ISTATE_ACFAIL;
-       printf("WARNING: ACFAIL* ASSERTED\n");
+       printf("ACFAIL* ASSERTED\n");
        return (1);
 }