summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2007-07-06 18:03:43 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2007-07-06 18:03:43 +0000
commit69b20f8d7ea28a8a527c1cfee0aa5c2b17aa3a69 (patch)
tree5c3065bae4cc30d895e8b228261ad7e6972ecaf3 /sys/dev
parentd910d04a48fe2157358ad96eb3936737790cbeff (diff)
typo in an error message.
reported a while back by Laurence Tratt, reminded more recently by brad@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_iwi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_iwi.c b/sys/dev/pci/if_iwi.c
index f67d8688e27..e057ac71b43 100644
--- a/sys/dev/pci/if_iwi.c
+++ b/sys/dev/pci/if_iwi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwi.c,v 1.81 2007/07/05 21:38:19 damien Exp $ */
+/* $OpenBSD: if_iwi.c,v 1.82 2007/07/06 18:03:42 damien Exp $ */
/*-
* Copyright (c) 2004-2006
@@ -1683,7 +1683,7 @@ iwi_load_firmware(struct iwi_softc *sc, const char *data, int size)
error = bus_dmamem_alloc(sc->sc_dmat, size, PAGE_SIZE, 0, &seg, 1,
&nsegs, BUS_DMA_NOWAIT);
if (error != 0) {
- printf("%s: could allocate firmware DMA memory\n",
+ printf("%s: could not allocate firmware DMA memory\n",
sc->sc_dev.dv_xname);
goto fail2;
}