From: miod Date: Sat, 17 May 2014 12:20:55 +0000 (+0000) Subject: Remove "WARNING:" prefix from SYSFAIL and ACFAIL messages, so that, in case X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=234da569a78fc986f4c3094b8cbf3bbd4f94a2eb;p=openbsd Remove "WARNING:" prefix from SYSFAIL and ACFAIL messages, so that, in case of ACFAIL, what reaches the console is explicit enough. --- diff --git a/sys/arch/aviion/dev/syscon.c b/sys/arch/aviion/dev/syscon.c index dda8c30bcc4..ea3851b7207 100644 --- a/sys/arch/aviion/dev/syscon.c +++ b/sys/arch/aviion/dev/syscon.c @@ -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); }