diff options
author | 2007-08-28 18:34:38 +0000 | |
---|---|---|
committer | 2007-08-28 18:34:38 +0000 | |
commit | b2f1b584a3867bc3962524d58fb824121e29bef6 (patch) | |
tree | 3298a3f6c998a9551ef89ad1f75570974770b9ee /sys/dev/usb/if_uath.c | |
parent | another quote (diff) | |
download | wireguard-openbsd-b2f1b584a3867bc3962524d58fb824121e29bef6.tar.xz wireguard-openbsd-b2f1b584a3867bc3962524d58fb824121e29bef6.zip |
unify firmware load failure messages; ok mglocker
Diffstat (limited to 'sys/dev/usb/if_uath.c')
-rw-r--r-- | sys/dev/usb/if_uath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_uath.c b/sys/dev/usb/if_uath.c index eedd8755a08..73a4d949955 100644 --- a/sys/dev/usb/if_uath.c +++ b/sys/dev/usb/if_uath.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_uath.c,v 1.27 2007/07/18 18:10:31 damien Exp $ */ +/* $OpenBSD: if_uath.c,v 1.28 2007/08/28 18:34:38 deraadt Exp $ */ /*- * Copyright (c) 2006 @@ -223,8 +223,8 @@ uath_attachhook(void *xsc) int error; if ((error = loadfirmware("uath-ar5523", &fw, &size)) != 0) { - printf("%s: could not read firmware (error=%d)\n", - sc->sc_dev.dv_xname, error); + printf("%s: error %d, could not read firmware %s\n", + sc->sc_dev.dv_xname, error, "uath-ar5523"); return; } |