summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-09-25 21:57:54 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-09-25 21:57:54 +0000
commitba94d0cea3d853d19732f64a17cd6207dc85ad5f (patch)
tree38b022cfba11bdd4a90667961e31cfc475ffc7c3 /sys/dev/usb
parent2641b0c407077fa8c3032d87d15ac6a103b0ed1b (diff)
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/FILES2
-rw-r--r--sys/dev/usb/Makefile.usbdevs2
-rw-r--r--sys/dev/usb/devlist2h.awk2
-rw-r--r--sys/dev/usb/hid.c2
-rw-r--r--sys/dev/usb/hid.h2
-rw-r--r--sys/dev/usb/if_aue.c4
-rw-r--r--sys/dev/usb/if_auereg.h2
-rw-r--r--sys/dev/usb/if_cue.c4
-rw-r--r--sys/dev/usb/if_cuereg.h2
-rw-r--r--sys/dev/usb/if_kue.c4
-rw-r--r--sys/dev/usb/if_kuereg.h2
-rw-r--r--sys/dev/usb/kue_fw.h2
-rw-r--r--sys/dev/usb/ohci.c2
-rw-r--r--sys/dev/usb/ohcireg.h2
-rw-r--r--sys/dev/usb/ohcivar.h2
-rw-r--r--sys/dev/usb/ugen.c2
-rw-r--r--sys/dev/usb/uhci.c2
-rw-r--r--sys/dev/usb/uhcireg.h2
-rw-r--r--sys/dev/usb/uhcivar.h2
-rw-r--r--sys/dev/usb/uhid.c2
-rw-r--r--sys/dev/usb/uhub.c2
-rw-r--r--sys/dev/usb/ukbd.c2
-rw-r--r--sys/dev/usb/ulpt.c2
-rw-r--r--sys/dev/usb/umass.c2
-rw-r--r--sys/dev/usb/umodem.c2
-rw-r--r--sys/dev/usb/ums.c2
-rw-r--r--sys/dev/usb/usb.c2
-rw-r--r--sys/dev/usb/usb.h2
-rw-r--r--sys/dev/usb/usb_ethersubr.c4
-rw-r--r--sys/dev/usb/usb_ethersubr.h2
-rw-r--r--sys/dev/usb/usb_if.m2
-rw-r--r--sys/dev/usb/usb_mem.h2
-rw-r--r--sys/dev/usb/usb_port.h2
-rw-r--r--sys/dev/usb/usb_quirks.c2
-rw-r--r--sys/dev/usb/usb_quirks.h2
-rw-r--r--sys/dev/usb/usb_subr.c2
-rw-r--r--sys/dev/usb/usbcdc.h2
-rw-r--r--sys/dev/usb/usbdevs2
-rw-r--r--sys/dev/usb/usbdevs.h2
-rw-r--r--sys/dev/usb/usbdevs_data.h2
-rw-r--r--sys/dev/usb/usbdi.c2
-rw-r--r--sys/dev/usb/usbdi.h2
-rw-r--r--sys/dev/usb/usbdi_util.c2
-rw-r--r--sys/dev/usb/usbdi_util.h2
-rw-r--r--sys/dev/usb/usbdivar.h2
-rw-r--r--sys/dev/usb/usbhid.h2
46 files changed, 50 insertions, 50 deletions
diff --git a/sys/dev/usb/FILES b/sys/dev/usb/FILES
index 2676b8a350deb..95eaf21e7f255 100644
--- a/sys/dev/usb/FILES
+++ b/sys/dev/usb/FILES
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/sys/dev/usb/FILES,v 1.2 2000/01/27 23:19:14 n_hibma Exp $
A small roadmap of the USB files:
diff --git a/sys/dev/usb/Makefile.usbdevs b/sys/dev/usb/Makefile.usbdevs
index 319d066d2859e..80b6da996ef37 100644
--- a/sys/dev/usb/Makefile.usbdevs
+++ b/sys/dev/usb/Makefile.usbdevs
@@ -1,6 +1,6 @@
# The files usbdevs.h and usbdevs_data.h are generated from usbdevs
#
-# $FreeBSD$
+# $FreeBSD: src/sys/dev/usb/Makefile.usbdevs,v 1.1.2.2 2000/05/07 14:36:41 n_hibma Exp $
AWK= awk
UNAME= uname
diff --git a/sys/dev/usb/devlist2h.awk b/sys/dev/usb/devlist2h.awk
index 6b99b3d0df89e..23a47e93591a1 100644
--- a/sys/dev/usb/devlist2h.awk
+++ b/sys/dev/usb/devlist2h.awk
@@ -1,6 +1,6 @@
#! /usr/bin/awk -f
# $NetBSD: devlist2h.awk,v 1.6 1999/08/17 16:06:20 augustss Exp $
-# $FreeBSD$
+# $FreeBSD: src/sys/dev/usb/devlist2h.awk,v 1.1 1999/11/18 18:02:44 n_hibma Exp $
#
# Copyright (c) 1995, 1996 Christopher G. Demetriou
# All rights reserved.
diff --git a/sys/dev/usb/hid.c b/sys/dev/usb/hid.c
index b061f2b24f5ed..3e38bc06ea152 100644
--- a/sys/dev/usb/hid.c
+++ b/sys/dev/usb/hid.c
@@ -1,5 +1,5 @@
/* $NetBSD: hid.c,v 1.15 2000/04/27 15:26:46 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/hid.c,v 1.11.2.3 2000/07/02 11:27:27 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/hid.h b/sys/dev/usb/hid.h
index 5953ce54607f5..b62150cbe6b47 100644
--- a/sys/dev/usb/hid.h
+++ b/sys/dev/usb/hid.h
@@ -1,5 +1,5 @@
/* $NetBSD: hid.h,v 1.5 2000/04/27 15:26:46 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/hid.h,v 1.7.2.2 2000/07/02 12:09:16 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/if_aue.c b/sys/dev/usb/if_aue.c
index 6e46a4dd7581c..6c34a1ddec45b 100644
--- a/sys/dev/usb/if_aue.c
+++ b/sys/dev/usb/if_aue.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/if_aue.c,v 1.19.2.4 2000/07/17 21:24:28 archie Exp $
*/
/*
@@ -97,7 +97,7 @@
#ifndef lint
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sys/dev/usb/if_aue.c,v 1.19.2.4 2000/07/17 21:24:28 archie Exp $";
#endif
/*
diff --git a/sys/dev/usb/if_auereg.h b/sys/dev/usb/if_auereg.h
index 9e4d5467798a7..22410b223876f 100644
--- a/sys/dev/usb/if_auereg.h
+++ b/sys/dev/usb/if_auereg.h
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/if_auereg.h,v 1.5 2000/01/28 02:15:30 wpaul Exp $
*/
/*
diff --git a/sys/dev/usb/if_cue.c b/sys/dev/usb/if_cue.c
index 3de43640b4e3a..c351bf693e486 100644
--- a/sys/dev/usb/if_cue.c
+++ b/sys/dev/usb/if_cue.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/if_cue.c,v 1.7.2.4 2000/07/17 21:24:28 archie Exp $
*/
/*
@@ -79,7 +79,7 @@
#ifndef lint
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sys/dev/usb/if_cue.c,v 1.7.2.4 2000/07/17 21:24:28 archie Exp $";
#endif
/*
diff --git a/sys/dev/usb/if_cuereg.h b/sys/dev/usb/if_cuereg.h
index ca90383ccf497..13d6f01156f06 100644
--- a/sys/dev/usb/if_cuereg.h
+++ b/sys/dev/usb/if_cuereg.h
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/if_cuereg.h,v 1.5 2000/01/28 02:15:30 wpaul Exp $
*/
/*
diff --git a/sys/dev/usb/if_kue.c b/sys/dev/usb/if_kue.c
index 780c42bbcbf1b..fa87e190f2e20 100644
--- a/sys/dev/usb/if_kue.c
+++ b/sys/dev/usb/if_kue.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/if_kue.c,v 1.17.2.6 2000/07/17 21:24:28 archie Exp $
*/
/*
@@ -95,7 +95,7 @@
#ifndef lint
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sys/dev/usb/if_kue.c,v 1.17.2.6 2000/07/17 21:24:28 archie Exp $";
#endif
/*
diff --git a/sys/dev/usb/if_kuereg.h b/sys/dev/usb/if_kuereg.h
index 5a315b172d62e..6409719f8c232 100644
--- a/sys/dev/usb/if_kuereg.h
+++ b/sys/dev/usb/if_kuereg.h
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/if_kuereg.h,v 1.5 2000/01/28 02:15:31 wpaul Exp $
*/
/*
diff --git a/sys/dev/usb/kue_fw.h b/sys/dev/usb/kue_fw.h
index 65b34b217c079..04ae7588ded73 100644
--- a/sys/dev/usb/kue_fw.h
+++ b/sys/dev/usb/kue_fw.h
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/kue_fw.h,v 1.1 2000/01/05 04:27:07 wpaul Exp $
*/
/*
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index 3ba281a7e76ed..c987ad1fd0f07 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,5 +1,5 @@
/* $NetBSD: ohci.c,v 1.64 2000/01/19 00:23:58 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.39.2.3 2000/07/02 11:43:58 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/ohcireg.h b/sys/dev/usb/ohcireg.h
index 053d7f3d3410f..fbd1fcafaef69 100644
--- a/sys/dev/usb/ohcireg.h
+++ b/sys/dev/usb/ohcireg.h
@@ -1,5 +1,5 @@
/* $NetBSD: ohcireg.h,v 1.11 2000/01/16 10:35:24 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ohcireg.h,v 1.13.2.1 2000/07/02 11:43:58 n_hibma Exp $ */
/*
diff --git a/sys/dev/usb/ohcivar.h b/sys/dev/usb/ohcivar.h
index 8d3777868c679..6c6b2e19cf6c3 100644
--- a/sys/dev/usb/ohcivar.h
+++ b/sys/dev/usb/ohcivar.h
@@ -1,5 +1,5 @@
/* $NetBSD: ohcivar.h,v 1.18 2000/01/18 20:11:00 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ohcivar.h,v 1.15.2.3 2000/07/02 12:42:40 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/ugen.c b/sys/dev/usb/ugen.c
index e50499596bbf1..5b44c6ec59a46 100644
--- a/sys/dev/usb/ugen.c
+++ b/sys/dev/usb/ugen.c
@@ -1,5 +1,5 @@
/* $NetBSD: ugen.c,v 1.27 1999/10/28 12:08:38 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ugen.c,v 1.38.2.3 2000/07/02 11:58:30 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index a0ad5a0bdc9e9..5dc2caba34c3f 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -1,5 +1,5 @@
/* $NetBSD: uhci.c,v 1.80 2000/01/19 01:16:38 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.40.2.6 2000/09/04 17:15:31 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/uhcireg.h b/sys/dev/usb/uhcireg.h
index 8178bb12df649..839d87d4424f4 100644
--- a/sys/dev/usb/uhcireg.h
+++ b/sys/dev/usb/uhcireg.h
@@ -1,5 +1,5 @@
/* $NetBSD: uhcireg.h,v 1.9 1999/11/20 00:57:09 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/uhcireg.h,v 1.14.2.1 2000/07/02 11:43:59 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/uhcivar.h b/sys/dev/usb/uhcivar.h
index b86c0edcc3ed1..6033063a3e2c1 100644
--- a/sys/dev/usb/uhcivar.h
+++ b/sys/dev/usb/uhcivar.h
@@ -1,5 +1,5 @@
/* $NetBSD: uhcivar.h,v 1.21 2000/01/18 20:11:01 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/uhcivar.h,v 1.16.2.4 2000/08/18 16:17:13 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/uhid.c b/sys/dev/usb/uhid.c
index 01bba201ef471..a1ccd3e39a3b6 100644
--- a/sys/dev/usb/uhid.c
+++ b/sys/dev/usb/uhid.c
@@ -1,5 +1,5 @@
/* $NetBSD: uhid.c,v 1.38 2000/04/27 15:26:48 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/uhid.c,v 1.27.2.3 2000/07/02 12:16:54 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c
index bd2574344a23b..58be74036d17f 100644
--- a/sys/dev/usb/uhub.c
+++ b/sys/dev/usb/uhub.c
@@ -1,5 +1,5 @@
/* $NetBSD: uhub.c,v 1.34 1999/11/18 23:32:29 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.21.2.3 2000/07/02 12:35:15 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/ukbd.c b/sys/dev/usb/ukbd.c
index c3334329d36c2..cf8d5f2ad246b 100644
--- a/sys/dev/usb/ukbd.c
+++ b/sys/dev/usb/ukbd.c
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ukbd.c,v 1.24.2.2 2000/07/02 11:43:59 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/ulpt.c b/sys/dev/usb/ulpt.c
index c5663d2e4582b..c7412a11df7c7 100644
--- a/sys/dev/usb/ulpt.c
+++ b/sys/dev/usb/ulpt.c
@@ -1,5 +1,5 @@
/* $NetBSD: ulpt.c,v 1.29 1999/11/17 23:00:50 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ulpt.c,v 1.26.2.4 2000/07/02 12:25:31 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/umass.c b/sys/dev/usb/umass.c
index 79dbbdf2fc7f6..c3644af90529c 100644
--- a/sys/dev/usb/umass.c
+++ b/sys/dev/usb/umass.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/umass.c,v 1.11.2.4 2000/07/02 12:31:42 n_hibma Exp $
* $NetBSD: umass.c,v 1.28 2000/04/02 23:46:53 augustss Exp $
*/
diff --git a/sys/dev/usb/umodem.c b/sys/dev/usb/umodem.c
index 47cbd17df5e39..1b464ec82b345 100644
--- a/sys/dev/usb/umodem.c
+++ b/sys/dev/usb/umodem.c
@@ -1,5 +1,5 @@
/* $NetBSD: umodem.c,v 1.5 1999/01/08 11:58:25 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/umodem.c,v 1.17.2.3 2000/07/02 11:43:59 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/ums.c b/sys/dev/usb/ums.c
index 4e7a2d1956d1f..196eea3cb4e75 100644
--- a/sys/dev/usb/ums.c
+++ b/sys/dev/usb/ums.c
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/ums.c,v 1.36.2.2 2000/07/02 11:43:59 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb.c b/sys/dev/usb/usb.c
index a73c993f5210a..fc53c5c03b510 100644
--- a/sys/dev/usb/usb.c
+++ b/sys/dev/usb/usb.c
@@ -1,5 +1,5 @@
/* $NetBSD: usb.c,v 1.33 1999/11/22 21:57:09 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb.c,v 1.26.2.3 2000/07/02 12:23:14 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb.h b/sys/dev/usb/usb.h
index f82fecdcc9997..3106154ed23d6 100644
--- a/sys/dev/usb/usb.h
+++ b/sys/dev/usb/usb.h
@@ -1,5 +1,5 @@
/* $NetBSD: usb.h,v 1.38 1999/10/20 21:02:39 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb.h,v 1.17.2.4 2000/07/02 12:14:44 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb_ethersubr.c b/sys/dev/usb/usb_ethersubr.c
index 2be517540fe40..5b388efd00377 100644
--- a/sys/dev/usb/usb_ethersubr.c
+++ b/sys/dev/usb/usb_ethersubr.c
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/usb_ethersubr.c,v 1.4.2.3 2000/05/24 01:47:50 archie Exp $
*/
/*
@@ -69,7 +69,7 @@
#ifndef lint
static const char rcsid[] =
- "$FreeBSD$";
+ "$FreeBSD: src/sys/dev/usb/usb_ethersubr.c,v 1.4.2.3 2000/05/24 01:47:50 archie Exp $";
#endif
Static struct ifqueue usbq_rx;
diff --git a/sys/dev/usb/usb_ethersubr.h b/sys/dev/usb/usb_ethersubr.h
index d98be8c48443c..43c43e76699e7 100644
--- a/sys/dev/usb/usb_ethersubr.h
+++ b/sys/dev/usb/usb_ethersubr.h
@@ -29,7 +29,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/usb/usb_ethersubr.h,v 1.4 2000/01/14 01:36:16 wpaul Exp $
*/
#ifndef _USB_ETHERSUBR_H_
diff --git a/sys/dev/usb/usb_if.m b/sys/dev/usb/usb_if.m
index c1b27c8a4becd..3e01ae1278c72 100644
--- a/sys/dev/usb/usb_if.m
+++ b/sys/dev/usb/usb_if.m
@@ -25,7 +25,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
-# $FreeBSD$
+# $FreeBSD: src/sys/dev/usb/usb_if.m,v 1.7.2.2 2000/05/07 14:58:03 n_hibma Exp $
#
# USB interface description
diff --git a/sys/dev/usb/usb_mem.h b/sys/dev/usb/usb_mem.h
index d8d29fd81225a..16d0a06acf5f6 100644
--- a/sys/dev/usb/usb_mem.h
+++ b/sys/dev/usb/usb_mem.h
@@ -1,5 +1,5 @@
/* $NetBSD: usb_mem.h,v 1.9 1999/10/13 08:10:58 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb_mem.h,v 1.10.2.1 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h
index b2a5b3545a369..32614f63f9d74 100644
--- a/sys/dev/usb/usb_port.h
+++ b/sys/dev/usb/usb_port.h
@@ -1,5 +1,5 @@
/* $NetBSD: usb_port.h,v 1.15 1999/11/16 12:04:28 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb_port.h,v 1.25.2.3 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb_quirks.c b/sys/dev/usb/usb_quirks.c
index 109de72cee0af..2704374bafea3 100644
--- a/sys/dev/usb/usb_quirks.c
+++ b/sys/dev/usb/usb_quirks.c
@@ -1,5 +1,5 @@
/* $NetBSD: usb_quirks.c,v 1.26 2000/04/27 15:26:50 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb_quirks.c,v 1.21.2.3 2000/07/02 12:19:56 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb_quirks.h b/sys/dev/usb/usb_quirks.h
index db5f8306d4cb0..b85b097cde6f5 100644
--- a/sys/dev/usb/usb_quirks.h
+++ b/sys/dev/usb/usb_quirks.h
@@ -1,5 +1,5 @@
/* $NetBSD: usb_quirks.h,v 1.11 2000/04/27 15:26:50 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb_quirks.h,v 1.11.2.2 2000/07/02 12:21:34 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usb_subr.c b/sys/dev/usb/usb_subr.c
index 4b3ae82035995..84caeb1cd67ae 100644
--- a/sys/dev/usb/usb_subr.c
+++ b/sys/dev/usb/usb_subr.c
@@ -1,5 +1,5 @@
/* $NetBSD: usb_subr.c,v 1.63 2000/01/19 00:23:58 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usb_subr.c,v 1.23.2.2 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbcdc.h b/sys/dev/usb/usbcdc.h
index 34a0c94ca0e78..ae8d332fef521 100644
--- a/sys/dev/usb/usbcdc.h
+++ b/sys/dev/usb/usbcdc.h
@@ -1,5 +1,5 @@
/* $NetBSD: usbcdc.h,v 1.3 1999/01/03 01:09:18 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbcdc.h,v 1.7.2.1 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs
index f9285ad772cb7..20af0282c9ae5 100644
--- a/sys/dev/usb/usbdevs
+++ b/sys/dev/usb/usbdevs
@@ -1,4 +1,4 @@
-$FreeBSD$
+$FreeBSD: src/sys/dev/usb/usbdevs,v 1.11.2.6 2000/06/13 07:58:19 n_hibma Exp $
/*
* Copyright (c) 1998, 1999, 2000 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbdevs.h b/sys/dev/usb/usbdevs.h
index c99140b20b077..963237592ee78 100644
--- a/sys/dev/usb/usbdevs.h
+++ b/sys/dev/usb/usbdevs.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdevs.h,v 1.32.2.6 2000/06/13 07:58:48 n_hibma Exp $ */
/*
* THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
diff --git a/sys/dev/usb/usbdevs_data.h b/sys/dev/usb/usbdevs_data.h
index d2b85a9b9806e..682acda043d46 100644
--- a/sys/dev/usb/usbdevs_data.h
+++ b/sys/dev/usb/usbdevs_data.h
@@ -1,4 +1,4 @@
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdevs_data.h,v 1.32.2.6 2000/06/13 07:58:48 n_hibma Exp $ */
/*
* THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c
index e572b3ebb71cf..c2643157e9f06 100644
--- a/sys/dev/usb/usbdi.c
+++ b/sys/dev/usb/usbdi.c
@@ -1,5 +1,5 @@
/* $NetBSD: usbdi.c,v 1.60 2000/01/19 00:23:58 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdi.c,v 1.34.2.3 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbdi.h b/sys/dev/usb/usbdi.h
index 3fb7c4bb0aee4..de0a235c05e76 100644
--- a/sys/dev/usb/usbdi.h
+++ b/sys/dev/usb/usbdi.h
@@ -1,5 +1,5 @@
/* $NetBSD: usbdi.h,v 1.39 2000/01/19 00:23:59 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdi.h,v 1.21.2.1 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbdi_util.c b/sys/dev/usb/usbdi_util.c
index 09b520305cca2..241d6c7d8b3ab 100644
--- a/sys/dev/usb/usbdi_util.c
+++ b/sys/dev/usb/usbdi_util.c
@@ -1,5 +1,5 @@
/* $NetBSD: usbdi_util.c,v 1.24 1999/11/17 23:00:50 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdi_util.c,v 1.15.2.2 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbdi_util.h b/sys/dev/usb/usbdi_util.h
index 14c52cec25a54..4390556b6f9be 100644
--- a/sys/dev/usb/usbdi_util.h
+++ b/sys/dev/usb/usbdi_util.h
@@ -1,5 +1,5 @@
/* $NetBSD: usbdi_util.h,v 1.17 1999/09/05 19:32:19 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdi_util.h,v 1.9.2.1 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h
index 9d8ca8aae5755..799ff9913ae10 100644
--- a/sys/dev/usb/usbdivar.h
+++ b/sys/dev/usb/usbdivar.h
@@ -1,5 +1,5 @@
/* $NetBSD: usbdivar.h,v 1.46 2000/01/19 01:16:40 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbdivar.h,v 1.14.2.1 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
diff --git a/sys/dev/usb/usbhid.h b/sys/dev/usb/usbhid.h
index 0379b2132c595..d4e33a9ecab95 100644
--- a/sys/dev/usb/usbhid.h
+++ b/sys/dev/usb/usbhid.h
@@ -1,5 +1,5 @@
/* $NetBSD: usbhid.h,v 1.4 1999/04/22 01:57:01 augustss Exp $ */
-/* $FreeBSD$ */
+/* $FreeBSD: src/sys/dev/usb/usbhid.h,v 1.7.2.1 2000/07/02 11:44:00 n_hibma Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.