diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2010-02-20 12:39:42 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2010-02-20 12:39:42 +0000 |
commit | 23daeb00a48c6987fb72d950455a8f9ada914c1d (patch) | |
tree | 28574dd22576f81b685d7126522ad264683f5dc8 /sys | |
parent | b291da9d2d8a7486f40ae7c10d83ab2fef133033 (diff) |
minor tweak to improve consistency with other drivers; startup
messages are usually lower case (exceptions are manufacturer codenames
as "Pentium" or "Horse").
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/alpha/alpha/cpu.c | 4 | ||||
-rw-r--r-- | sys/dev/ic/isp.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/alpha/alpha/cpu.c b/sys/arch/alpha/alpha/cpu.c index a5dba341ad0..75cdf808b24 100644 --- a/sys/arch/alpha/alpha/cpu.c +++ b/sys/arch/alpha/alpha/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.25 2009/10/02 17:55:52 miod Exp $ */ +/* $OpenBSD: cpu.c,v 1.26 2010/02/20 12:39:41 sobrado Exp $ */ /* $NetBSD: cpu.c,v 1.44 2000/05/23 05:12:53 thorpej Exp $ */ /*- @@ -267,7 +267,7 @@ recognized: cpu_amask = (~alpha_amask(ALPHA_AMASK_ALL)) & ALPHA_AMASK_ALL; if (cpu_amask) { - printf("%s: Architecture extensions: %b\n", + printf("%s: architecture extensions: %b\n", dev->dv_xname, cpu_amask, ALPHA_AMASK_BITS); } } diff --git a/sys/dev/ic/isp.c b/sys/dev/ic/isp.c index 6936e55b686..7881c2b53e7 100644 --- a/sys/dev/ic/isp.c +++ b/sys/dev/ic/isp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp.c,v 1.48 2010/02/18 10:16:12 sobrado Exp $ */ +/* $OpenBSD: isp.c,v 1.49 2010/02/20 12:39:41 sobrado Exp $ */ /* $FreeBSD: src/sys/dev/isp/isp.c,v 1.150 2008/12/15 21:42:38 marius Exp $*/ /*- * Copyright (c) 1997-2007 by Matthew Jacob @@ -1086,7 +1086,7 @@ isp_reset(struct ispsoftc *isp) } isp_prt(isp, ISP_LOGALL, - "Board type %s rev 0x%x, %s firmware rev %d.%d.%d", + "board type %s rev 0x%x, %s firmware rev %d.%d.%d", btype, isp->isp_revision, dodnld? "loaded" : "resident", isp->isp_fwrev[0], isp->isp_fwrev[1], isp->isp_fwrev[2]); |