aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-22 09:41:53 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-23 04:22:34 -0500
commit077af794d9ab016b52cd3dd90bd8b1709a61710f (patch)
tree0bf45b8dfad90fa3d3416ba24093213c00a0197a
parent5008ae5156ebf3a6e6b07269f1b8a67273ef4b6a (diff)
USB: storage: remove invalid URL from drivers
The old URL for usb-storage driver help is long gone. So remove it from the comments to not confuse people anymore. Reported-by: Matthew Dharm <mdharm-usb@one-eyed-alien.net> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/storage/debug.c3
-rw-r--r--drivers/usb/storage/debug.h3
-rw-r--r--drivers/usb/storage/initializers.c3
-rw-r--r--drivers/usb/storage/initializers.h3
-rw-r--r--drivers/usb/storage/protocol.c3
-rw-r--r--drivers/usb/storage/protocol.h3
-rw-r--r--drivers/usb/storage/scsiglue.c3
-rw-r--r--drivers/usb/storage/scsiglue.h3
-rw-r--r--drivers/usb/storage/transport.c3
-rw-r--r--drivers/usb/storage/transport.h3
-rw-r--r--drivers/usb/storage/unusual_devs.h3
-rw-r--r--drivers/usb/storage/usb.c3
-rw-r--r--drivers/usb/storage/usb.h3
-rw-r--r--drivers/usb/storage/usual-tables.c3
14 files changed, 0 insertions, 42 deletions
diff --git a/drivers/usb/storage/debug.c b/drivers/usb/storage/debug.c
index e5a4969d15ae..d7f50b7a079e 100644
--- a/drivers/usb/storage/debug.c
+++ b/drivers/usb/storage/debug.c
@@ -25,9 +25,6 @@
25 * 25 *
26 * Also, for certain devices, the interrupt endpoint is used to convey 26 * Also, for certain devices, the interrupt endpoint is used to convey
27 * status of a command. 27 * status of a command.
28 *
29 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
30 * information about this driver.
31 */ 28 */
32 29
33#include <linux/device.h> 30#include <linux/device.h>
diff --git a/drivers/usb/storage/debug.h b/drivers/usb/storage/debug.h
index 8833cd4f78b6..6d64f342f587 100644
--- a/drivers/usb/storage/debug.h
+++ b/drivers/usb/storage/debug.h
@@ -22,9 +22,6 @@
22 * 22 *
23 * Also, for certain devices, the interrupt endpoint is used to convey 23 * Also, for certain devices, the interrupt endpoint is used to convey
24 * status of a command. 24 * status of a command.
25 *
26 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
27 * information about this driver.
28 */ 25 */
29 26
30#ifndef _DEBUG_H_ 27#ifndef _DEBUG_H_
diff --git a/drivers/usb/storage/initializers.c b/drivers/usb/storage/initializers.c
index 93a6bcf77806..f8f9ce8dc710 100644
--- a/drivers/usb/storage/initializers.c
+++ b/drivers/usb/storage/initializers.c
@@ -18,9 +18,6 @@
18 * 18 *
19 * Also, for certain devices, the interrupt endpoint is used to convey 19 * Also, for certain devices, the interrupt endpoint is used to convey
20 * status of a command. 20 * status of a command.
21 *
22 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
23 * information about this driver.
24 */ 21 */
25 22
26#include <linux/errno.h> 23#include <linux/errno.h>
diff --git a/drivers/usb/storage/initializers.h b/drivers/usb/storage/initializers.h
index e4cf28efb4a7..2dbf9c7d9749 100644
--- a/drivers/usb/storage/initializers.h
+++ b/drivers/usb/storage/initializers.h
@@ -18,9 +18,6 @@
18 * 18 *
19 * Also, for certain devices, the interrupt endpoint is used to convey 19 * Also, for certain devices, the interrupt endpoint is used to convey
20 * status of a command. 20 * status of a command.
21 *
22 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
23 * information about this driver.
24 */ 21 */
25 22
26#include "usb.h" 23#include "usb.h"
diff --git a/drivers/usb/storage/protocol.c b/drivers/usb/storage/protocol.c
index f3f2a93f52e1..9033e505db7f 100644
--- a/drivers/usb/storage/protocol.c
+++ b/drivers/usb/storage/protocol.c
@@ -25,9 +25,6 @@
25 * 25 *
26 * Also, for certain devices, the interrupt endpoint is used to convey 26 * Also, for certain devices, the interrupt endpoint is used to convey
27 * status of a command. 27 * status of a command.
28 *
29 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
30 * information about this driver.
31 */ 28 */
32 29
33#include <linux/highmem.h> 30#include <linux/highmem.h>
diff --git a/drivers/usb/storage/protocol.h b/drivers/usb/storage/protocol.h
index 9198396e8c6e..072f1ffda2af 100644
--- a/drivers/usb/storage/protocol.h
+++ b/drivers/usb/storage/protocol.h
@@ -19,9 +19,6 @@
19 * 19 *
20 * Also, for certain devices, the interrupt endpoint is used to convey 20 * Also, for certain devices, the interrupt endpoint is used to convey
21 * status of a command. 21 * status of a command.
22 *
23 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
24 * information about this driver.
25 */ 22 */
26 23
27#ifndef _PROTOCOL_H_ 24#ifndef _PROTOCOL_H_
diff --git a/drivers/usb/storage/scsiglue.c b/drivers/usb/storage/scsiglue.c
index 585efd120193..c267f2812a04 100644
--- a/drivers/usb/storage/scsiglue.c
+++ b/drivers/usb/storage/scsiglue.c
@@ -26,9 +26,6 @@
26 * 26 *
27 * Also, for certain devices, the interrupt endpoint is used to convey 27 * Also, for certain devices, the interrupt endpoint is used to convey
28 * status of a command. 28 * status of a command.
29 *
30 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
31 * information about this driver.
32 */ 29 */
33 30
34#include <linux/module.h> 31#include <linux/module.h>
diff --git a/drivers/usb/storage/scsiglue.h b/drivers/usb/storage/scsiglue.h
index bf99c6201331..2bc5ea045bf7 100644
--- a/drivers/usb/storage/scsiglue.h
+++ b/drivers/usb/storage/scsiglue.h
@@ -19,9 +19,6 @@
19 * 19 *
20 * Also, for certain devices, the interrupt endpoint is used to convey 20 * Also, for certain devices, the interrupt endpoint is used to convey
21 * status of a command. 21 * status of a command.
22 *
23 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
24 * information about this driver.
25 */ 22 */
26 23
27#ifndef _SCSIGLUE_H_ 24#ifndef _SCSIGLUE_H_
diff --git a/drivers/usb/storage/transport.c b/drivers/usb/storage/transport.c
index d947957f3635..96cb0409dd89 100644
--- a/drivers/usb/storage/transport.c
+++ b/drivers/usb/storage/transport.c
@@ -26,9 +26,6 @@
26 * 26 *
27 * Also, for certain devices, the interrupt endpoint is used to convey 27 * Also, for certain devices, the interrupt endpoint is used to convey
28 * status of a command. 28 * status of a command.
29 *
30 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
31 * information about this driver.
32 */ 29 */
33 30
34#include <linux/sched.h> 31#include <linux/sched.h>
diff --git a/drivers/usb/storage/transport.h b/drivers/usb/storage/transport.h
index f559dc575f4f..fb3bb4ee4ccf 100644
--- a/drivers/usb/storage/transport.h
+++ b/drivers/usb/storage/transport.h
@@ -19,9 +19,6 @@
19 * 19 *
20 * Also, for certain devices, the interrupt endpoint is used to convey 20 * Also, for certain devices, the interrupt endpoint is used to convey
21 * status of a command. 21 * status of a command.
22 *
23 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
24 * information about this driver.
25 */ 22 */
26 23
27#ifndef _TRANSPORT_H_ 24#ifndef _TRANSPORT_H_
diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h
index f72d045ee9ef..481c3ef540d2 100644
--- a/drivers/usb/storage/unusual_devs.h
+++ b/drivers/usb/storage/unusual_devs.h
@@ -8,9 +8,6 @@
8 * 8 *
9 * Initial work by: 9 * Initial work by:
10 * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc. 10 * (c) 2000 Adam J. Richter (adam@yggdrasil.com), Yggdrasil Computing, Inc.
11 *
12 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
13 * information about this driver.
14 */ 11 */
15 12
16/* 13/*
diff --git a/drivers/usb/storage/usb.c b/drivers/usb/storage/usb.c
index 3eb934792465..9a79cd9762f3 100644
--- a/drivers/usb/storage/usb.c
+++ b/drivers/usb/storage/usb.c
@@ -28,9 +28,6 @@
28 * 28 *
29 * Also, for certain devices, the interrupt endpoint is used to convey 29 * Also, for certain devices, the interrupt endpoint is used to convey
30 * status of a command. 30 * status of a command.
31 *
32 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
33 * information about this driver.
34 */ 31 */
35 32
36#ifdef CONFIG_USB_STORAGE_DEBUG 33#ifdef CONFIG_USB_STORAGE_DEBUG
diff --git a/drivers/usb/storage/usb.h b/drivers/usb/storage/usb.h
index 90133e16bec5..85052cd66839 100644
--- a/drivers/usb/storage/usb.h
+++ b/drivers/usb/storage/usb.h
@@ -22,9 +22,6 @@
22 * 22 *
23 * Also, for certain devices, the interrupt endpoint is used to convey 23 * Also, for certain devices, the interrupt endpoint is used to convey
24 * status of a command. 24 * status of a command.
25 *
26 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
27 * information about this driver.
28 */ 25 */
29 26
30#ifndef _USB_H_ 27#ifndef _USB_H_
diff --git a/drivers/usb/storage/usual-tables.c b/drivers/usb/storage/usual-tables.c
index 83ad01747eed..cfd12e523678 100644
--- a/drivers/usb/storage/usual-tables.c
+++ b/drivers/usb/storage/usual-tables.c
@@ -4,9 +4,6 @@
4 * Usual Tables File for usb-storage and libusual 4 * Usual Tables File for usb-storage and libusual
5 * 5 *
6 * Copyright (C) 2009 Alan Stern (stern@rowland.harvard.edu) 6 * Copyright (C) 2009 Alan Stern (stern@rowland.harvard.edu)
7 *
8 * Please see http://www.one-eyed-alien.net/~mdharm/linux-usb for more
9 * information about this driver.
10 */ 7 */
11 8
12#include <linux/kernel.h> 9#include <linux/kernel.h>