diff options
| author | 2010-12-26 15:37:20 +0000 | |
|---|---|---|
| committer | 2010-12-26 15:37:20 +0000 | |
| commit | 4468ebcd8c480ea508b77b62da249c841ad563df (patch) | |
| tree | 4ced1fd594286ab704c381c76f7da6cf7072f929 /sys/arch/sparc | |
| parent | Use sizeof(double) instead of hardcoding 8. (diff) | |
| download | wireguard-openbsd-4468ebcd8c480ea508b77b62da249c841ad563df.tar.xz wireguard-openbsd-4468ebcd8c480ea508b77b62da249c841ad563df.zip | |
Clean up how we print the sbus(4) clock speed. Purely cosmetic.
ok miod@, deraadt@
Diffstat (limited to 'sys/arch/sparc')
| -rw-r--r-- | sys/arch/sparc/dev/sbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/sbus.c b/sys/arch/sparc/dev/sbus.c index 2202f56380f..0dd281dd509 100644 --- a/sys/arch/sparc/dev/sbus.c +++ b/sys/arch/sparc/dev/sbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sbus.c,v 1.18 2010/09/05 18:10:10 kettenis Exp $ */ +/* $OpenBSD: sbus.c,v 1.19 2010/12/26 15:37:20 kettenis Exp $ */ /* $NetBSD: sbus.c,v 1.17 1997/06/01 22:10:39 pk Exp $ */ /* @@ -163,7 +163,7 @@ sbus_attach(parent, self, aux) if (sc->sc_clockfreq <= 0) sc->sc_clockfreq = getpropint(findroot(), "clock-frequency", 25 * 1000 * 1000); - printf(": clock = %s MHz\n", clockfreq(sc->sc_clockfreq)); + printf(": %s MHz\n", clockfreq(sc->sc_clockfreq)); /* * Get the SBus burst transfer size if burst transfers are supported |
