aboutsummaryrefslogtreecommitdiffstats
path: root/usb
diff options
authorGreg Kroah-Hartman <gregkh@suse.de>2008-04-23 10:18:11 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2008-04-23 10:18:11 -0700
commit027bda89bb7e5b3aa9f76f5a4ed9ce03621907b7 (patch)
treef24d59a4fc8adb82c1b24f0d89b67f682a06c9f1 /usb
parent3b8d837d19cfc1f4dbcce3ec727917fb5ff4e41a (diff)
downloadpatches-027bda89bb7e5b3aa9f76f5a4ed9ce03621907b7.tar.gz
delete patches now in Linus's tree
Diffstat (limited to 'usb')
-rw-r--r--usb/usb-a-couple-corrections-and-clarifications-in-usb-doc.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/usb/usb-a-couple-corrections-and-clarifications-in-usb-doc.patch b/usb/usb-a-couple-corrections-and-clarifications-in-usb-doc.patch
deleted file mode 100644
index 1cc744a896144c..00000000000000
--- a/usb/usb-a-couple-corrections-and-clarifications-in-usb-doc.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-From rpjday@crashcourse.ca Sun Mar 9 01:03:04 2008
-From: "Robert P. J. Day" <rpjday@crashcourse.ca>
-Date: Sun, 9 Mar 2008 05:02:50 -0400 (EDT)
-Subject: USB: A couple corrections and clarifications in USB doc.
-To: trivial@kernel.org
-Cc: Greg KH <greg@kroah.com>
-Message-ID: <alpine.LFD.1.00.0803090501280.22332@localhost.localdomain>
-
-
-
-Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
-Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-
----
- Documentation/DocBook/writing_usb_driver.tmpl | 14 +++++++-------
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
---- a/Documentation/DocBook/writing_usb_driver.tmpl
-+++ b/Documentation/DocBook/writing_usb_driver.tmpl
-@@ -100,8 +100,8 @@
- useful documents, at the USB home page (see Resources). An excellent
- introduction to the Linux USB subsystem can be found at the USB Working
- Devices List (see Resources). It explains how the Linux USB subsystem is
-- structured and introduces the reader to the concept of USB urbs, which
-- are essential to USB drivers.
-+ structured and introduces the reader to the concept of USB urbs
-+ (USB Request Blocks), which are essential to USB drivers.
- </para>
- <para>
- The first thing a Linux USB driver needs to do is register itself with
-@@ -162,8 +162,8 @@ static int __init usb_skel_init(void)
- module_init(usb_skel_init);
- </programlisting>
- <para>
-- When the driver is unloaded from the system, it needs to unregister
-- itself with the USB subsystem. This is done with the usb_unregister
-+ When the driver is unloaded from the system, it needs to deregister
-+ itself with the USB subsystem. This is done with the usb_deregister
- function:
- </para>
- <programlisting>
-@@ -232,7 +232,7 @@ static int skel_probe(struct usb_interfa
- were passed to the USB subsystem will be called from a user program trying
- to talk to the device. The first function called will be open, as the
- program tries to open the device for I/O. We increment our private usage
-- count and save off a pointer to our internal structure in the file
-+ count and save a pointer to our internal structure in the file
- structure. This is done so that future calls to file operations will
- enable the driver to determine which device the user is addressing. All
- of this is done with the following code:
-@@ -252,8 +252,8 @@ file->private_data = dev;
- send to the device based on the size of the write urb it has created (this
- size depends on the size of the bulk out end point that the device has).
- Then it copies the data from user space to kernel space, points the urb to
-- the data and submits the urb to the USB subsystem. This can be shown in
-- he following code:
-+ the data and submits the urb to the USB subsystem. This can be seen in
-+ the following code:
- </para>
- <programlisting>
- /* we can only write as much as 1 urb will hold */