summaryrefslogtreecommitdiff
path: root/sys/dev/ic/acx.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-08-28 18:34:39 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-08-28 18:34:39 +0000
commit3a751c740f25666498ccb5d7c20b3cbf053571f3 (patch)
treef8c870157811197b4a33176af0172134b0380501 /sys/dev/ic/acx.c
parent6a96d38dabb00c1e4597e3571071aa5a61c15b16 (diff)
unify firmware load failure messages; ok mglocker
Diffstat (limited to 'sys/dev/ic/acx.c')
-rw-r--r--sys/dev/ic/acx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c
index e1b44168dac..88ecbc31745 100644
--- a/sys/dev/ic/acx.c
+++ b/sys/dev/ic/acx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acx.c,v 1.76 2007/08/05 22:40:38 claudio Exp $ */
+/* $OpenBSD: acx.c,v 1.77 2007/08/28 18:34:38 deraadt Exp $ */
/*
* Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -1524,7 +1524,7 @@ acx_load_base_firmware(struct acx_softc *sc, const char *name)
error = loadfirmware(name, &ucode, &size);
if (error != 0) {
- printf("%s: error %d, could not read microcode %s!\n",
+ printf("%s: error %d, could not read firmware %s\n",
ifp->if_xname, error, name);
return (EIO);
}
@@ -1573,7 +1573,7 @@ acx_load_radio_firmware(struct acx_softc *sc, const char *name)
error = loadfirmware(name, &ucode, &size);
if (error != 0) {
- printf("%s: error %d, could not read microcode %s!\n",
+ printf("%s: error %d, could not read firmware %s\n",
ifp->if_xname, error, name);
return (EIO);
}