summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2014-03-11 10:24:43 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2014-03-11 10:24:43 +0000
commit2505a987c1ad2a47476cda060511590721e62463 (patch)
treeab55176680f5edb59ad6c048de742d5cbac108ad /sys/dev/usb
parent3145208f57e40fe37fd3b241e2181882151661d6 (diff)
Kill dead links.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/ehci.c11
-rw-r--r--sys/dev/usb/ehcireg.h9
-rw-r--r--sys/dev/usb/ohci.c9
-rw-r--r--sys/dev/usb/uhci.c12
-rw-r--r--sys/dev/usb/uhub.c6
5 files changed, 5 insertions, 42 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c
index 5644fc9a240..51348382657 100644
--- a/sys/dev/usb/ehci.c
+++ b/sys/dev/usb/ehci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ehci.c,v 1.143 2014/03/07 09:51:50 mpi Exp $ */
+/* $OpenBSD: ehci.c,v 1.144 2014/03/11 10:24:42 mpi Exp $ */
/* $NetBSD: ehci.c,v 1.66 2004/06/30 03:11:56 mycroft Exp $ */
/*
@@ -32,15 +32,6 @@
*/
/*
- * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
- *
- * The EHCI 1.0 spec can be found at
- * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
- * and the USB 2.0 spec at
- * http://www.usb.org/developers/docs/usb_20.zip
- */
-
-/*
* TODO:
* 1) The hub driver needs to handle and schedule the transaction translator,
* to assign place in frame where different devices get to go. See chapter
diff --git a/sys/dev/usb/ehcireg.h b/sys/dev/usb/ehcireg.h
index b182e139e2a..30994b221f7 100644
--- a/sys/dev/usb/ehcireg.h
+++ b/sys/dev/usb/ehcireg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ehcireg.h,v 1.18 2013/04/15 09:23:01 mglocker Exp $ */
+/* $OpenBSD: ehcireg.h,v 1.19 2014/03/11 10:24:42 mpi Exp $ */
/* $NetBSD: ehcireg.h,v 1.17 2004/06/23 06:45:56 mycroft Exp $ */
/*
@@ -30,13 +30,6 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-/*
- * The EHCI 1.0 spec can be found at
- * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
- * and the USB 2.0 spec at
- * http://www.usb.org/developers/data/usb_20.zip
- */
-
#ifndef _DEV_PCI_EHCIREG_H_
#define _DEV_PCI_EHCIREG_H_
diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c
index 5acd6b7497f..4554d18e25b 100644
--- a/sys/dev/usb/ohci.c
+++ b/sys/dev/usb/ohci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ohci.c,v 1.121 2014/03/07 09:51:50 mpi Exp $ */
+/* $OpenBSD: ohci.c,v 1.122 2014/03/11 10:24:42 mpi Exp $ */
/* $NetBSD: ohci.c,v 1.139 2003/02/22 05:24:16 tsutsui Exp $ */
/* $FreeBSD: src/sys/dev/usb/ohci.c,v 1.22 1999/11/17 22:33:40 n_hibma Exp $ */
@@ -32,13 +32,6 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-/*
- * USB Open Host Controller driver.
- *
- * OHCI spec: http://www.compaq.com/productinfo/development/openhci.html
- * USB spec: http://www.usb.org/developers/docs/usbspec.zip
- */
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index de47662adea..d1e53b34f7a 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uhci.c,v 1.107 2014/03/07 09:51:50 mpi Exp $ */
+/* $OpenBSD: uhci.c,v 1.108 2014/03/11 10:24:42 mpi Exp $ */
/* $NetBSD: uhci.c,v 1.172 2003/02/23 04:19:26 simonb Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $ */
@@ -32,16 +32,6 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-/*
- * USB Universal Host Controller driver.
- * Handles e.g. PIIX3 and PIIX4.
- *
- * UHCI spec: http://download.intel.com/technology/usb/UHCI11D.pdf
- * USB spec: http://www.usb.org/developers/docs/usbspec.zip
- * PIIXn spec: ftp://download.intel.com/design/intarch/datashts/29055002.pdf
- * ftp://download.intel.com/design/intarch/datashts/29056201.pdf
- */
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
diff --git a/sys/dev/usb/uhub.c b/sys/dev/usb/uhub.c
index a0b1df5f204..2ef5e6f8d9e 100644
--- a/sys/dev/usb/uhub.c
+++ b/sys/dev/usb/uhub.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uhub.c,v 1.65 2014/03/08 11:52:02 mpi Exp $ */
+/* $OpenBSD: uhub.c,v 1.66 2014/03/11 10:24:42 mpi Exp $ */
/* $NetBSD: uhub.c,v 1.64 2003/02/08 03:32:51 ichiro Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhub.c,v 1.18 1999/11/17 22:33:43 n_hibma Exp $ */
@@ -32,10 +32,6 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-/*
- * USB spec: http://www.usb.org/developers/docs/usbspec.zip
- */
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>