Module Name:    src
Committed By:   christos
Date:           Wed Apr 28 15:56:25 UTC 2010

Modified Files:
        src/sys/dev/pci: if_iwn.c

Log Message:
kill stray free. from Sverre Froyen.


To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/sys/dev/pci/if_iwn.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/pci/if_iwn.c
diff -u src/sys/dev/pci/if_iwn.c:1.42 src/sys/dev/pci/if_iwn.c:1.43
--- src/sys/dev/pci/if_iwn.c:1.42	Fri Apr 23 16:56:20 2010
+++ src/sys/dev/pci/if_iwn.c	Wed Apr 28 11:56:24 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_iwn.c,v 1.42 2010/04/23 20:56:20 christos Exp $	*/
+/*	$NetBSD: if_iwn.c,v 1.43 2010/04/28 15:56:24 christos Exp $	*/
 /*	$OpenBSD: if_iwn.c,v 1.88 2010/04/10 08:37:36 damien Exp $	*/
 
 /*-
@@ -22,7 +22,7 @@
  * adapters.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.42 2010/04/23 20:56:20 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.43 2010/04/28 15:56:24 christos Exp $");
 
 #define IWN_USE_RBUF	/* Use local storage for RX */
 #undef IWN_HWCRYPTO	/* XXX does not even compile yet */
@@ -5619,7 +5619,6 @@
 	if (IWN_FW_API(rev) <= 1) {
 		aprint_error_dev(sc->sc_dev,
 		    "bad firmware, need API version >=2\n");
-		firmware_free(fw->data, fw->datasz);
 		goto out;
 	}
 	if (IWN_FW_API(rev) >= 3) {

Reply via email to