[linux-usb-devel] Mutiple endpoints, selection

2005-02-09 Thread Flavio Pereira
Hi all I'm new to the USB subsystem in Linux, and can't seem to figure out how to implement more than a single read and write bulk endpoint. For example, my USB device has four interfaces with a total of 5 endpoints. 1 being an INTR endpoint and the others are all BULK. So I have set up the URB'

[linux-usb-devel] lh7a404 USB gadget users?

2005-02-09 Thread Jamie Guinan
Hello, Is anyone successfully using the USB gadget drivers with the lh7a40x_udc controller driver? A guy I'm working with has some changes to lh7a40x_udc that he would like to merge, but I wanted to how people were doing with the existing driver before I post anything. I've gotten mixed resul

[linux-usb-devel] Serial vs USB Serial

2005-02-09 Thread Kharisma Esguerra
I forgot to say that i'm using Montavista Linux with (B2.4.20 kernel (and I can't change this, I wish I could). (B (BMa. Kharisma V. Esguerra (BSystem Engineer I (BEpson Precision (Philippines), Inc. - Cebu Office (BModule 7A, e-Office, Asiatown I.T. Park, (BApas, Cebu City, 6000 Philippines

[linux-usb-devel] Serial vs USB Serial

2005-02-09 Thread Kharisma Esguerra
Hi guys, needing your help. (^_^) (B (BI'm currently creating a linux application that would need (Bto communicate with a usb-serial device. (B (BI've tested my serial class with a serial printer. My (Bclass can read and write properly to the printer. But this is using the (Bserial (Bport (

[linux-usb-devel] usb driver crashing other apps

2005-02-09 Thread Joaquin Durand Gomez
Hello! I'm developing a linux driver for a USB fingerprint sensor. Right now the driver is working correctly, capturing fingerprint images from the sensor and sending them to a user-space application. The problem I'm having is that after a random number of finger captures the driver itself crashe

[linux-usb-devel] Re: [PATCH 0/63] convert usb_control_msg() and usb_bulk_msg() to use msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 10:41:44PM +0300, Evgeniy Polyakov wrote: > On Tue, 8 Feb 2005 16:02:12 -0800 > Nishanth Aravamudan <[EMAIL PROTECTED]> wrote: > > > Hi, > > > > The following patchset (affecting USB, Bluetooth, IrDA, Sound, DVB and W1 -- > > hence the long To: an Cc: lists...) converts th

[linux-usb-devel] Re: [PATCH 0/63] convert usb_control_msg() and usb_bulk_msg() to use msecs

2005-02-09 Thread Evgeniy Polyakov
On Tue, 8 Feb 2005 16:02:12 -0800 Nishanth Aravamudan <[EMAIL PROTECTED]> wrote: > Hi, > > The following patchset (affecting USB, Bluetooth, IrDA, Sound, DVB and W1 -- > hence the long To: an Cc: lists...) converts the usb_control_msg() and > usb_bulk_msg() functions to use milliseconds in the ti

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Thomas Dodd
Nishanth Aravamudan wrote: On Wed, Feb 09, 2005 at 02:00:44PM -0800, Pete Zaitcev wrote: On Wed, 9 Feb 2005 12:11:27 -0800, Nishanth Aravamudan <[EMAIL PROTECTED]> wrote: Is 3 * (MSECS_IN_SECS / 2) really all that much clearer than 1500? It would be better if it were just MS, IMHO. Do you mean y

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread Brian Murphy
David Brownell wrote: On Wednesday 09 February 2005 1:57 pm, Brian Murphy wrote: Listening to your wishes I have the following: ... Presumably you think this should be 2 seperate patches (although this was not entirely clear) part 1 fixing the bug and part 2 fixing the message? That's how I

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 09:25:31PM +0100, Oliver Neukum wrote: > Am Mittwoch, 9. Februar 2005 20:39 schrieb Greg KH: > > > For maintainability, code needs to have a few basic accommodations > > > for newcomers -- or semi-forgetful oldtimers.  (I think that covers > > > pretty much every developer,

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 02:00:44PM -0800, Pete Zaitcev wrote: > On Wed, 9 Feb 2005 12:11:27 -0800, Nishanth Aravamudan <[EMAIL PROTECTED]> > wrote: > > > Is 3 * (MSECS_IN_SECS / 2) really all that much clearer than 1500? > > It would be better if it were just MS, IMHO. Do you mean you prefer 3

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 2:01 pm, Alan Stern wrote: > Darn it, you're right. SL811 too. But I've already changed > Documentation/usb/error-codes.txt to say that -EPROTO or -EILSEQ is the > return code for that error. :-( > > It seems like a good idea to try and keep separate the notions

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 1:57 pm, Brian Murphy wrote: > Listening to your wishes I have the following: > > ... > > Presumably you think this should be 2 seperate patches (although this > was not entirely clear) part 1 fixing the bug and part 2 fixing the > message? That's how I'd submit it:

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread Alan Stern
On Wed, 9 Feb 2005, David Brownell wrote: > On Wednesday 09 February 2005 12:44 pm, Alan Stern wrote: > > > While you're at it, please remove also that comment about HCDs returning > > ETIMEDOUT for other reasons. They don't, not any more. > > OHCI always has -- for the "device not responding"

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Pete Zaitcev
On Wed, 9 Feb 2005 12:11:27 -0800, Nishanth Aravamudan <[EMAIL PROTECTED]> wrote: > Is 3 * (MSECS_IN_SECS / 2) really all that much clearer than 1500? It would be better if it were just MS, IMHO. I like when it's clear if it's us, ms, ns. For example, usbmon timestamps are in microseconds becau

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread Brian Murphy
Listening to your wishes I have the following: patch1 removing useless warning: diff -r -u /home/brm/kernel/linux-2.6.11-rc3.orig/drivers/usb/core/devio.c drivers/usb/core/devio.c --- /home/brm/kernel/linux-2.6.11-rc3.orig/drivers/usb/core/devio.c 2005-02-05 10:41:56.0 +0100 +++ driv

Re: [linux-usb-devel] Adding support for a usb camera (mass storage)

2005-02-09 Thread Alan Stern
On Mon, 7 Feb 2005, Micha Feigin wrote: > > Make sure the sd_mod module is loaded. > > I made sure. I also have a disk-on-key or however they are called that works > just fine. This camera has never worked for several kernels while several usb > storage devices worked without a glitch. > > I get

Re: [linux-usb-devel] Trouble with Floppy+CR combo

2005-02-09 Thread Alan Stern
On Mon, 7 Feb 2005, Thomas Winischhofer wrote: > Alan Stern wrote: > | It looks like the floppy device needs the patch given below. It might > | help the hub problem, but then again it might not. > > > It did not... > > > | I kind of suspect all those timeout messages for the hub device are >

[linux-usb-devel] usb_alloc_urb general question

2005-02-09 Thread Srdjan Sobajic
Hi, I was looking at the scanner.c driver in the 2.4.28 kernel tree, and I noticed that it does not use the usb_alloc_urb/usb_free_urb functions to allocate the URBs, instead relying on the creation of struct scn_usb_data (which contains the actual URB structs rather than pointers to them). Accor

Re: [linux-usb-devel] write protection handling on usb-storage devices

2005-02-09 Thread Alan Stern
On Wed, 9 Feb 2005, Matthew Dharm wrote: > > Considering that only a small number of devices are unable to handle > > write-protect detection (I've seen reports for no more than two), maybe we > > should just make it into another unusual_devs flag? That way there's > > nothing to configure either

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 12:44 pm, Alan Stern wrote: > While you're at it, please remove also that comment about HCDs returning > ETIMEDOUT for other reasons. They don't, not any more. OHCI always has -- for the "device not responding" error. Still does in all my local trees, and in Greg'

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread Alan Stern
On Wed, 9 Feb 2005, Brian Murphy wrote: > I would very much like to see this patch or equivalent in the next > official kernel: > --- linux-2.6.11-rc3.orig/drivers/usb/core/message.c2005-02-05 > 10:41:57.0 +0100 > +++ linux-2.6.11-rc3/drivers/usb/core/message.c 2005-02-07 > 01:40:2

Re: [linux-usb-devel] USBTest and the 2.4.26 kernel

2005-02-09 Thread yodathejediknight
Hello from Gregg C Levine Thank you for clarifying that point. I have since told my staff member that. As for "bugs", he's convinced, but I am not, that the 2,6 family is not as stable as the later releases of the 2,4 series, because it is still too new. As for what I am wanting to test, mostly

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Oliver Neukum
Am Mittwoch, 9. Februar 2005 20:39 schrieb Greg KH: > > For maintainability, code needs to have a few basic accommodations > > for newcomers -- or semi-forgetful oldtimers.  (I think that covers > > pretty much every developer, come to think of it...)  One of those > > accomodations is using symbol

Re: [linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 11:59 am, Brian Murphy wrote: > I would very much like to see this patch or equivalent in the next > official kernel: I'd call it three separate patches: > --- linux-2.6.11-rc3.orig/drivers/usb/core/devio.c 2005-02-05 > 10:41:56.0 +0100 > +++ linux-2.

Re: [linux-usb-devel] hcd->state

2005-02-09 Thread Alan Stern
Dave: Going back to the questions about hcd->state... Let's consider just how it's used in hcd.c. Slightly rearranged from what I said before, these uses include: 1. Tested during URB submission for a device on the bus. 2. Tested during root-hub control URB submission.

Re: [linux-usb-devel] BUG in ehci_endpoint_disable (ehci-hcd.c)

2005-02-09 Thread Brian Murphy
David Brownell wrote: On Wednesday 09 February 2005 11:39 am, Brian Murphy wrote: David Brownell wrote: But, rather than just logging a KERN_CRIT error, the better fix would be to just do what ehci-hcd.c::unlink_async() does and stick that QH at the end of the reclaim queue, in QH_STATE_UNL

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 11:44:11AM -0800, David Brownell wrote: > On Wednesday 09 February 2005 11:01 am, Nishanth Aravamudan wrote: > > HZ always meant, since the last parameter was > > a jiffies-unit expression, the number of jiffies in a second ... > > ... HZ just means 100, or 1000, or what

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 11:51:55AM -0800, David Brownell wrote: > On Wednesday 09 February 2005 11:36 am, Greg KH wrote: > > On Wed, Feb 09, 2005 at 11:01:45AM -0800, Nishanth Aravamudan wrote: > > > No, if we say, "this paramater is in milliseconds", like you did, I > > don't see the need to chan

[linux-usb-devel] Re: Problem with USB mouse input

2005-02-09 Thread Rus V. Brushkoff
On Wed, 9 Feb 2005, Vojtech Pavlik wrote: :> Something like input/usb subsytem related - in short : pressing mouse :> button generates keyboard event (the letter appears at console for ex. :> [gpm is not running]). This is the only mouse that shows such input :> behaviour - other USB mouses's are

[linux-usb-devel] [PATCH 2.6.11-rc3] remove annoying log messages and fix discarding of valid data in usbfs

2005-02-09 Thread Brian Murphy
I would very much like to see this patch or equivalent in the next official kernel: --- linux-2.6.11-rc3.orig/drivers/usb/core/devio.c 2005-02-05 10:41:56.0 +0100 +++ linux-2.6.11-rc3/drivers/usb/core/devio.c 2005-02-07 01:35:11.0 +0100 @@ -661,8 +661,9 @@ }

[linux-usb-devel] Re: Problem with USB mouse input

2005-02-09 Thread Vojtech Pavlik
On Thu, Oct 28, 2004 at 01:30:23PM +0300, Rus V. Brushkoff wrote: > > Hi. > > Something like input/usb subsytem related - in short : pressing mouse > button generates keyboard event (the letter appears at console for ex. > [gpm is not running]). This is the only mouse that shows such input

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 11:36 am, Greg KH wrote: > On Wed, Feb 09, 2005 at 11:01:45AM -0800, Nishanth Aravamudan wrote: > No, if we say, "this paramater is in milliseconds", like you did, I > don't see the need to change this everywhere. I think the 1000 value is > even clearer than before

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 11:33:49AM -0800, David Brownell wrote: > On Wednesday 09 February 2005 11:01 am, Nishanth Aravamudan wrote: > > On Wed, Feb 09, 2005 at 10:33:02AM -0800, David Brownell wrote: > > > On Tuesday 08 February 2005 10:05 pm, Nishanth Aravamudan wrote: > > > > - USB

Re: [linux-usb-devel] BUG in ehci_endpoint_disable (ehci-hcd.c)

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 11:39 am, Brian Murphy wrote: > David Brownell wrote: > > >But, rather than just logging a KERN_CRIT error, the better fix would > >be to just do what ehci-hcd.c::unlink_async() does and stick that QH > >at the end of the reclaim queue, in QH_STATE_UNLINK_WAIT. In fa

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 11:01 am, Nishanth Aravamudan wrote: > HZ always meant, since the last parameter was > a jiffies-unit expression, the number of jiffies in a second ... > ... HZ just means 100, or 1000, or whatever value it has). And anyone using HZ to do almost anything other t

Re: [linux-usb-devel] write protection handling on usb-storage devices

2005-02-09 Thread Matthew Dharm
On Wed, Feb 09, 2005 at 11:49:42AM -0500, Alan Stern wrote: > On Wed, 2 Feb 2005, Matthew Dharm wrote: > > > On Wed, Feb 02, 2005 at 11:57:57AM -0500, Alan Stern wrote: > > > Below is a patch for 2.6.11-rc2 that makes write-protect detection into a > > > module parameter. Matt Dharm has consider

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Greg KH
On Wed, Feb 09, 2005 at 11:33:49AM -0800, David Brownell wrote: > On Wednesday 09 February 2005 11:01 am, Nishanth Aravamudan wrote: > > On Wed, Feb 09, 2005 at 10:33:02AM -0800, David Brownell wrote: > > > On Tuesday 08 February 2005 10:05 pm, Nishanth Aravamudan wrote: > > > > - USB

Re: [linux-usb-devel] BUG in ehci_endpoint_disable (ehci-hcd.c)

2005-02-09 Thread Brian Murphy
David Brownell wrote: But, rather than just logging a KERN_CRIT error, the better fix would be to just do what ehci-hcd.c::unlink_async() does and stick that QH at the end of the reclaim queue, in QH_STATE_UNLINK_WAIT. In fact, can you try just calling unlink_async() there, to see if that behaves?

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Greg KH
On Wed, Feb 09, 2005 at 11:01:45AM -0800, Nishanth Aravamudan wrote: > On Wed, Feb 09, 2005 at 10:33:02AM -0800, David Brownell wrote: > > On Tuesday 08 February 2005 10:05 pm, Nishanth Aravamudan wrote: > > > - USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, HZ); > > > + US

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread David Brownell
On Wednesday 09 February 2005 11:01 am, Nishanth Aravamudan wrote: > On Wed, Feb 09, 2005 at 10:33:02AM -0800, David Brownell wrote: > > On Tuesday 08 February 2005 10:05 pm, Nishanth Aravamudan wrote: > > > - USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, HZ); > > > + USB_

[linux-usb-devel] [RFC PATCH] add wait_event_*_lock() functions

2005-02-09 Thread Nishanth Aravamudan
Hi Al, It came up on IRC that the wait_cond*() functions from usb/serial/gadget.c could be useful in other parts of the kernel. Does the following patch make sense towards this? I did not add corresponding wait_event_exclusive() macros, as I don't think they would be used, but that is a simple add

[linux-usb-devel] Re: [PATCH as463] Hub driver: Add reset recovery-time delay

2005-02-09 Thread Alan Stern
On Wed, 9 Feb 2005, Greg KH wrote: > On Wed, Feb 09, 2005 at 12:50:55PM -0500, Alan Stern wrote: > > Greg: > > > > This patch is clearly needed for us to be in compliance with the USB spec. > > It adds the mandated recovery-time delay following a port reset. > > Regardless of anything else we

Re: [linux-usb-devel] Mapping between port and device file

2005-02-09 Thread Brian Murphy
[EMAIL PROTECTED] wrote: Hi, Can you please tell me, is there any way to map between actual USB port and device files. Its something like port 1 ->devicefile1 port 2 ->devicefile2 port 3 ->devicefile3 etc can you please give us some guidelines on this thru which we can able to do this. Th

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
On Wed, Feb 09, 2005 at 10:33:02AM -0800, David Brownell wrote: > On Tuesday 08 February 2005 10:05 pm, Nishanth Aravamudan wrote: > > - USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, HZ); > > + USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000); > > You kno

[linux-usb-devel] [PATCH] usb/message: move msecs change into usb_start_wait_urb()

2005-02-09 Thread Nishanth Aravamudan
On Tue, Feb 08, 2005 at 04:12:32PM -0800, Nishanth Aravamudan wrote: > Hi, > > Sent to everyone so that build and compile tests will be possible. Only Greg > should need to pull this into a tree, though, to send upstream. > > Thanks, > Nish > > Description: Change the units of the timeout parame

Re: [linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread David Brownell
On Tuesday 08 February 2005 10:05 pm, Nishanth Aravamudan wrote: > - USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, HZ); > + USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000); You know, changing from symbols to magic numbers is not a win. People know wh

[linux-usb-devel] Re: [PATCH as463] Hub driver: Add reset recovery-time delay

2005-02-09 Thread Greg KH
On Wed, Feb 09, 2005 at 12:50:55PM -0500, Alan Stern wrote: > Greg: > > This patch is clearly needed for us to be in compliance with the USB spec. > It adds the mandated recovery-time delay following a port reset. > Regardless of anything else we do to alter the device initialization > sequen

Re: [linux-usb-devel] 2.6.11-rc3 not detecting usb pen drive

2005-02-09 Thread Alan Stern
On Wed, 9 Feb 2005, Gerd v. Egidy wrote: > Thanks a lot, this patch did it. > > Is this patch expected to be found in mainline in the near future? I hope so! It was just submitted for inclusion a few minutes ago. Alan Stern --- SF email i

[linux-usb-devel] [PATCH as465] Clear endpoint toggles in usb_set_interface

2005-02-09 Thread Alan Stern
Greg: Pete Zaitcev has found some USB devices that don't reset their endpoint data toggles when they get a SET-INTERFACE request. Apparently they interpret the USB specification too literally when it says that the toggles must be reset whenever the alternate setting is "changed". Anyway, this pa

[linux-usb-devel] [PATCH as464] Fix race: URB submission vs. endpoint-disable

2005-02-09 Thread Alan Stern
Greg: This patch fixes a race between URB submission and endpoint-disable. (I don't know that it's actually possible to trigger the race, but it won't hurt to move the appropriate test inside the region protected by the spinlock.) In addition, an out-of-date comment referring to timeouts is

[linux-usb-devel] [PATCH as463] Hub driver: Add reset recovery-time delay

2005-02-09 Thread Alan Stern
Greg: This patch is clearly needed for us to be in compliance with the USB spec. It adds the mandated recovery-time delay following a port reset. Regardless of anything else we do to alter the device initialization sequence, this is necessary. It would be nice if this could get into 2.6.11-f

Re: [linux-usb-devel] 2.6.11-rc3 not detecting usb pen drive

2005-02-09 Thread Gerd v. Egidy
Hi Alan, > > I've got a usb pen drive and got problems getting it to work. [...] > You can try using this patch. Thanks a lot, this patch did it. Is this patch expected to be found in mainline in the near future? Kind regards, Gerd --- SF

[linux-usb-devel] [PATCH 18/63] usb/konicawc: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/med

[linux-usb-devel] [PATCH 27/63] usb/legousbtower: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/legousbtower.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 29/63] usb/phidgetservo: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/phidgetservo.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 40/63] usb/ir-usb: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/ir-usb.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 17/63] usb/ibmcam: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/med

[linux-usb-devel] [PATCH 20/63] usb/se401: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/med

[linux-usb-devel] [PATCH 38/63] usb/ipaq: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/ipaq.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 16/63] usb/wacom: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/inp

[linux-usb-devel] [PATCH 25/63] usb/w9968cf: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/media/w9968cf.h 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 35/63] usb/belkin_sa: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/belkin_sa.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/driv

[linux-usb-devel] [PATCH 30/63] usb/usbled: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/usbled.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 31/63] usb/uss720: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/uss720.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 47/63] usb/usblcd: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/usblcd.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 22/63] usb/ultracam: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/media/ultracam.c2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 41/63] usb/keyspan_pda: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/keyspan_pda.c2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 24/63] usb/auerswald: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/auerswald.c2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 21/63] usb/sn9c102: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/media/sn9c102.h 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 14/63] usb/aipteke: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/inp

[linux-usb-devel] [PATCH 5/63] usb/audio: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/class/audio.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 32/63] usb/catc: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/net/catc.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 23/63] usb/vicam: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/media/vicam.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/us

[linux-usb-devel] [PATCH 42/63] usb/kl5kusb105: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/kl5kusb105.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 15/63] usb/mtouchusb: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/inp

[linux-usb-devel] [PATCH 39/63] usb/ipw: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/ipw.c2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 6/63] usb/cdc-acm: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/class/cdc-acm.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 19/63] usb/ov511: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/med

[linux-usb-devel] [PATCH 26/63] usb/idmouse: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/idmouse.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 11/63] usb/cytherm: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/mis

[linux-usb-devel] [PATCH 45/63] usb/visor: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/visor.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 8/63] usb/devio: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/core/devio.c2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 13/63] usb/powermate: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/inp

[linux-usb-devel] [PATCH 48/63] usb/whiteheat: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/whiteheat.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 10/63] usb/hid-core: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/inp

[linux-usb-devel] [PATCH 46/63] usb/rio500: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/rio500.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 4/63] usb/speedtch: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/atm/speedtch.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 28/63] usb/phidgetkit: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/phidgetkit.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 43/63] usb/mct_u232: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/mct_u232.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/dri

[linux-usb-devel] [PATCH 34/63] usb/usbnet: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Remove unused jiffy-unit constant. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/net/usbnet.c2005-02-03 16:57:40.0

[linux-usb-devel] [PATCH 7/63] usb/usblp: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/misc/usblcd.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 12/63] usb/usbtest: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/mis

[linux-usb-devel] [PATCH 44/63] usb/ti_usb_3410_5052: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/ti_usb_3410_5052.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc

[linux-usb-devel] [PATCH 49/63] usb/usb-skeleton: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/usb-skeleton.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 9/63] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT was converted to milliseconds in a separate patch. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/core

[linux-usb-devel] [PATCH 36/63] usb/ezusb: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/ezusb.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/us

[linux-usb-devel] [PATCH 33/63] usb/rtl8150: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/net/rtl8150.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/usb

[linux-usb-devel] [PATCH 37/63] usb/io_ti: change parameters of usb_{control,bulk}_msg() to msecs

2005-02-09 Thread Nishanth Aravamudan
Hi, Description: Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> --- 2.6.11-rc3-kj-v/drivers/usb/serial/io_ti.c 2005-02-03 16:57:40.0 -0800 +++ 2.6.11-rc3-kj/drivers/us

Re: [linux-usb-devel] write protection handling on usb-storage devices

2005-02-09 Thread Alan Stern
On Wed, 2 Feb 2005, Matthew Dharm wrote: > On Wed, Feb 02, 2005 at 11:57:57AM -0500, Alan Stern wrote: > > Below is a patch for 2.6.11-rc2 that makes write-protect detection into a > > module parameter. Matt Dharm has considered doing this in the past; I > > don't remember if he came to a final

  1   2   >