summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/dev/sbus.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2010-12-26 15:37:21 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2010-12-26 15:37:21 +0000
commit47f20d782a94ebc11fb4c7b43294559377be4989 (patch)
treecbac7ba1f5f6daa6303fa40ea6b487ffe529ad3d /sys/arch/sparc64/dev/sbus.c
parent947ac46eb8289d3fd68726abf968e8cd11282de9 (diff)
Clean up how we print the sbus(4) clock speed. Purely cosmetic.
ok miod@, deraadt@
Diffstat (limited to 'sys/arch/sparc64/dev/sbus.c')
-rw-r--r--sys/arch/sparc64/dev/sbus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/sbus.c b/sys/arch/sparc64/dev/sbus.c
index 153fd547bc9..ee1f1bebc60 100644
--- a/sys/arch/sparc64/dev/sbus.c
+++ b/sys/arch/sparc64/dev/sbus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sbus.c,v 1.38 2010/11/11 17:58:23 miod Exp $ */
+/* $OpenBSD: sbus.c,v 1.39 2010/12/26 15:37:20 kettenis Exp $ */
/* $NetBSD: sbus.c,v 1.46 2001/10/07 20:30:41 eeh Exp $ */
/*-
@@ -277,7 +277,7 @@ sbus_xbox_attach(struct device *parent, struct device *self, void *aux)
* IS THIS THE CORRECT DEFAULT??
*/
sc->sc_clockfreq = getpropint(node, "clock-frequency", 25*1000*1000);
- printf(": clock = %s MHz\n", clockfreq(sc->sc_clockfreq));
+ printf(": %s MHz\n", clockfreq(sc->sc_clockfreq));
sbus_attach_common(sc, node, 1);
}