diff options
| author | christos <christos@NetBSD.org> | 2013-03-30 14:30:23 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2013-03-30 14:30:23 +0000 |
| commit | e21d277eaffb4bf8ccbc0b9bdd563e81183251f6 (patch) | |
| tree | 081174b767020c4efd8b137acc61c518ea494059 /sys/dev | |
| parent | f6af2e00f5b565d6e6ab644793be1a6be1285e21 (diff) | |
correct location of the firmware file again.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/if_athn_usb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/if_athn_usb.c b/sys/dev/usb/if_athn_usb.c index 4bc16e16523..97cccc8a066 100644 --- a/sys/dev/usb/if_athn_usb.c +++ b/sys/dev/usb/if_athn_usb.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_athn_usb.c,v 1.3 2013/03/30 14:14:31 christos Exp $ */ +/* $NetBSD: if_athn_usb.c,v 1.4 2013/03/30 14:30:24 christos Exp $ */ /* $OpenBSD: if_athn_usb.c,v 1.12 2013/01/14 09:50:31 jsing Exp $ */ /*- @@ -22,7 +22,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_athn_usb.c,v 1.3 2013/03/30 14:14:31 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_athn_usb.c,v 1.4 2013/03/30 14:30:24 christos Exp $"); #ifdef _KERNEL_OPT #include "opt_inet.h" @@ -813,7 +813,7 @@ athn_usb_load_firmware(struct athn_usb_softc *usc) name = "athn-ar9271"; /* Read firmware image from the filesystem. */ - if ((error = firmware_open("if_athn_usb", name, &fwh)) != 0) { + if ((error = firmware_open("if_athn", name, &fwh)) != 0) { aprint_error_dev(sc->sc_dev, "failed to open firmware file %s (%d)\n", name, error); return error; |
