Module Name: src Committed By: cegger Date: Tue May 12 13:22:10 UTC 2009
Modified Files: src/sys/dev/usb: umct.c usb.c Log Message: struct cfdata * -> cfdata_t, no functional changes intended. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/usb/umct.c cvs rdiff -u -r1.116 -r1.117 src/sys/dev/usb/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/umct.c diff -u src/sys/dev/usb/umct.c:1.26 src/sys/dev/usb/umct.c:1.27 --- src/sys/dev/usb/umct.c:1.26 Sat May 24 16:40:58 2008 +++ src/sys/dev/usb/umct.c Tue May 12 13:22:10 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: umct.c,v 1.26 2008/05/24 16:40:58 cube Exp $ */ +/* $NetBSD: umct.c,v 1.27 2009/05/12 13:22:10 cegger Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. * All rights reserved. @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: umct.c,v 1.26 2008/05/24 16:40:58 cube Exp $"); +__KERNEL_RCSID(0, "$NetBSD: umct.c,v 1.27 2009/05/12 13:22:10 cegger Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -147,7 +147,7 @@ }; #define umct_lookup(v, p) usb_lookup(umct_devs, v, p) -int umct_match(device_t, struct cfdata *, void *); +int umct_match(device_t, cfdata_t, void *); void umct_attach(device_t, device_t, void *); void umct_childdet(device_t, device_t); int umct_detach(device_t, int); Index: src/sys/dev/usb/usb.c diff -u src/sys/dev/usb/usb.c:1.116 src/sys/dev/usb/usb.c:1.117 --- src/sys/dev/usb/usb.c:1.116 Tue Apr 7 18:15:45 2009 +++ src/sys/dev/usb/usb.c Tue May 12 13:22:10 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: usb.c,v 1.116 2009/04/07 18:15:45 dyoung Exp $ */ +/* $NetBSD: usb.c,v 1.117 2009/05/12 13:22:10 cegger Exp $ */ /* * Copyright (c) 1998, 2002, 2008 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.116 2009/04/07 18:15:45 dyoung Exp $"); +__KERNEL_RCSID(0, "$NetBSD: usb.c,v 1.117 2009/05/12 13:22:10 cegger Exp $"); #include "opt_compat_netbsd.h" @@ -153,7 +153,7 @@ Static const char *usbrev_str[] = USBREV_STR; -static int usb_match(device_t, struct cfdata *, void *); +static int usb_match(device_t, cfdata_t, void *); static void usb_attach(device_t, device_t, void *); static int usb_detach(device_t, int); static int usb_activate(device_t, enum devact);