diff options
| author | 2014-05-17 12:20:55 +0000 | |
|---|---|---|
| committer | 2014-05-17 12:20:55 +0000 | |
| commit | 234da569a78fc986f4c3094b8cbf3bbd4f94a2eb (patch) | |
| tree | ca91ecb643fc81962104fc9a430ba20eb06fffc9 /sys/arch/aviion/dev/syscon.c | |
| parent | unbreak build: exchange %b args order, from miod@ (diff) | |
| download | wireguard-openbsd-234da569a78fc986f4c3094b8cbf3bbd4f94a2eb.tar.xz wireguard-openbsd-234da569a78fc986f4c3094b8cbf3bbd4f94a2eb.zip | |
Remove "WARNING:" prefix from SYSFAIL and ACFAIL messages, so that, in case
of ACFAIL, what reaches the console is explicit enough.
Diffstat (limited to 'sys/arch/aviion/dev/syscon.c')
| -rw-r--r-- | sys/arch/aviion/dev/syscon.c | 6 |
1 files changed, 3 insertions, 3 deletions
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); } |
