Module Name: src Committed By: christos Date: Sat Mar 30 03:12:40 UTC 2013
Modified Files: src/sys/dev/usb: if_athn_usb.c Log Message: reflect the new location of the firmware files To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/if_athn_usb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/dev/usb/if_athn_usb.c diff -u src/sys/dev/usb/if_athn_usb.c:1.1 src/sys/dev/usb/if_athn_usb.c:1.2 --- src/sys/dev/usb/if_athn_usb.c:1.1 Fri Mar 29 22:53:02 2013 +++ src/sys/dev/usb/if_athn_usb.c Fri Mar 29 23:12:39 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: if_athn_usb.c,v 1.1 2013/03/30 02:53:02 christos Exp $ */ +/* $NetBSD: if_athn_usb.c,v 1.2 2013/03/30 03:12:39 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.1 2013/03/30 02:53:02 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_athn_usb.c,v 1.2 2013/03/30 03:12:39 christos Exp $"); #ifdef _KERNEL_OPT #include "opt_inet.h" @@ -813,7 +813,7 @@ athn_usb_load_firmware(struct athn_usb_s 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;