diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-03-15 11:36:39 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-03-15 11:36:39 +0000 |
commit | 12106d97b6987594ab4458718172311bba06187e (patch) | |
tree | c1333a2f8d718ea71c7143f3d1383d9716106d4f /sys/dev | |
parent | bbf8ff133b004f83a6ce758b2845ff0eb2e0bb45 (diff) |
Fix pasto in error message.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/qlw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/qlw.c b/sys/dev/ic/qlw.c index d0217f39c61..183ffedc0c1 100644 --- a/sys/dev/ic/qlw.c +++ b/sys/dev/ic/qlw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qlw.c,v 1.12 2014/03/13 23:04:14 kettenis Exp $ */ +/* $OpenBSD: qlw.c,v 1.13 2014/03/15 11:36:38 kettenis Exp $ */ /* * Copyright (c) 2011 David Gwynne <dlg@openbsd.org> @@ -256,7 +256,7 @@ qlw_attach(struct qlw_softc *sc) sc->sc_mbox[0] = QLW_MBOX_SET_CLOCK_RATE; sc->sc_mbox[1] = sc->sc_clock; if (qlw_mbox(sc, 0x0003, 0x0001)) { - printf("couldn't set retry count: %x\n", sc->sc_mbox[0]); + printf("couldn't set clock rate: %x\n", sc->sc_mbox[0]); return (ENXIO); } |