Module Name:    src
Committed By:   cegger
Date:           Thu May  7 08:10:02 UTC 2009

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

Log Message:
struct device * -> device_t, no functional changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 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.29 src/sys/dev/pci/if_iwn.c:1.30
--- src/sys/dev/pci/if_iwn.c:1.29	Wed May  6 09:25:15 2009
+++ src/sys/dev/pci/if_iwn.c	Thu May  7 08:10:02 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_iwn.c,v 1.29 2009/05/06 09:25:15 cegger Exp $	*/
+/*	$NetBSD: if_iwn.c,v 1.30 2009/05/07 08:10:02 cegger Exp $	*/
 
 /*-
  * Copyright (c) 2007
@@ -18,7 +18,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.29 2009/05/06 09:25:15 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iwn.c,v 1.30 2009/05/07 08:10:02 cegger Exp $");
 
 
 /*
@@ -429,7 +429,7 @@
 }
 
 static int
-iwn_detach(struct device* self, int flags __unused)
+iwn_detach(device_t self, int flags __unused)
 {
 	struct iwn_softc *sc = (struct iwn_softc *)self;
 	struct ifnet *ifp = sc->sc_ic.ic_ifp;

Reply via email to