[linux-usb-devel] Device driver and DeviceIoControl

2005-03-08 Thread =?ISO-8859-1?Q?C=E9dric_FINANCE?=
Hello, I'm trying to write a driver for an usb device. It's a cartridge flasher based on a ezusb microcontroller. I talked with the developer and he gave me the firmware and a piece of code. I uploaded the firmware and managed to find the device with the libusb. But then I don't know how to

Re: [linux-usb-devel] [PATCH] To add usabillity for the Maxtor Onetouch button on External Hard-drives

2005-03-08 Thread Dmitry Torokhov
On Wednesday 09 March 2005 00:59, Greg KH wrote: > On Tue, Mar 08, 2005 at 08:57:06PM -0500, Nick Sillik wrote: > > Do I need to use a spinlock, or should I just impliment a simple up/down > > lock? > > Depends on how long you are going to need to hold it, and what you are > going to be doing whi

Re: [linux-usb-devel] [PATCH] To add usabillity for the Maxtor Onetouch button on External Hard-drives

2005-03-08 Thread Greg KH
On Tue, Mar 08, 2005 at 08:57:06PM -0500, Nick Sillik wrote: > Do I need to use a spinlock, or should I just impliment a simple up/down > lock? Depends on how long you are going to need to hold it, and what you are going to be doing while holding the lock. Good luck, greg k-h

Re: [linux-usb-devel] [PATCH] To add usabillity for the Maxtor Onetouch button on External Hard-drives

2005-03-08 Thread Nick Sillik
Do I need to use a spinlock, or should I just impliment a simple up/down lock? Nick Sillik [EMAIL PROTECTED] Greg KH wrote: No, this isn't currently possible, but it could happen in the near future. To be safe, use a lock :) thanks, greg k-h --

Re: [linux-usb-devel] [PATCH] To add usabillity for the Maxtor Onetouch button on External Hard-drives

2005-03-08 Thread Greg KH
On Tue, Mar 08, 2005 at 03:55:13PM -0500, Dmitry Torokhov wrote: > Hi, > > On Tue, 08 Mar 2005 11:55:47 -0500, Nick Sillik <[EMAIL PROTECTED]> wrote: > > +struct usb_onetouch_wrap { > > + struct list_head list; > > + struct usb_onetouch *onetouch; > > +}; > > I may be wrong but I thou

[linux-usb-devel] [PATCH] USB: Fix use after free in usb/core/devices.c

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.152, 2005/03/08 01:04:42-08:00, [EMAIL PROTECTED] [PATCH] USB: Fix use after free in usb/core/devices.c There's a low probability use-after-free here caused by some switched pointers, st needs to go back to file->private_data Found by Coverity tool Signed-off-by: Alexander Ny

[linux-usb-devel] [PATCH] USB: compat ioctl for submiting URB

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.156, 2005/03/08 01:10:37-08:00, [EMAIL PROTECTED] [PATCH] USB: compat ioctl for submiting URB From: Christopher Li <[EMAIL PROTECTED]> - Let usbdevfs directly handle 32 bit URB ioctl. More specifically: USBDEVFS_SUBMITURB32, USBDEVFS_REAPURB32 and USBDEVFS_REAPURBNDELAY32.

[linux-usb-devel] [PATCH] USB: fix ohci Kconfig entry

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.137, 2005/03/08 00:45:11-08:00, [EMAIL PROTECTED] [PATCH] USB: fix ohci Kconfig entry The recently merged AMD/Alchemy Au1xxx OHCI driver won't configure on boards which also have PCI support; this resolves that. Signed-off-by: David Brownell <[EMAIL PROTECTED]> Signed-off-by:

[linux-usb-devel] [PATCH] USB: fix memory leak in get_string if usb_string() call failed.

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.143, 2005/03/08 00:55:39-08:00, [EMAIL PROTECTED] [PATCH] USB: fix memory leak in get_string if usb_string() call failed. Pointed out by Alan Stern <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/usb/core/hub.c |2 ++ 1 files changed, 2

[linux-usb-devel] [PATCH] USB: PhidgetKit driver update

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.153, 2005/03/08 01:05:04-08:00, [EMAIL PROTECTED] [PATCH] USB: PhidgetKit driver update A small patch for drivers/usb/misc/phidgetkit.c: Fixes for PhidgetInterfaceKit 0/0/4, by Chris Strandt <[EMAIL PROTECTED]> Signed-off-by: Sean Young <[EMAIL PROTECTED]> Signed-off-by: Greg

[linux-usb-devel] [PATCH] [PATCH] Add US_FL_GO_SLOW flag,

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.148, 2005/03/08 01:03:15-08:00, [EMAIL PROTECTED] [PATCH] [PATCH] Add US_FL_GO_SLOW flag, This adds the US_FL_GO_SLOW flag. This flag is for devices that need a 110 usec delay during high-speed transfers. This seems to be limited to USB-to-IDE chips. Unusual_dev entries for aff

[linux-usb-devel] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.126, 2005/03/08 00:40:34-08:00, [EMAIL PROTECTED] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd This patch contains the changes for the dummy-hcd driver. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/

[linux-usb-devel] [PATCH] USB Storage: Remove fix_capacity routine

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.7, 2005/03/07 22:18:22-08:00, [EMAIL PROTECTED] [PATCH] USB Storage: Remove fix_capacity routine This is patch as422 from Alan Stern. This is the second half of the two-part patch to move the fix_capacity functionality up into the sd driver. James Bottomley has applied the SC

[linux-usb-devel] [PATCH] USB: Don't return IRQ_NONE for edge-triggered interrupts

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.136, 2005/03/08 00:44:49-08:00, [EMAIL PROTECTED] [PATCH] USB: Don't return IRQ_NONE for edge-triggered interrupts On Tue, 15 Feb 2005, Greg KH wrote: > Thanks, I've applied all of them except as460 as there seemed to be > confusion about that one. Care to respin that one base

[linux-usb-devel] [PATCH] usb/ftdi_sio: convert WDR_TIMEOUT to milliseconds

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.150, 2005/03/08 01:04:01-08:00, [EMAIL PROTECTED] [PATCH] usb/ftdi_sio: convert WDR_TIMEOUT to milliseconds WDR_TIMEOUT was not updated with the the other constants related to converting the final parameter of usb_{control,bulk}_msg() to milliseconds. Signed-off-by: Nishanth A

[linux-usb-devel] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.129, 2005/03/08 00:41:46-08:00, [EMAIL PROTECTED] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd This patch contains the changes to the ohci-ppc-soc driver. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> driver

[linux-usb-devel] [PATCH] USB Documentation update: USB error codes

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.145, 2005/03/08 01:02:09-08:00, [EMAIL PROTECTED] [PATCH] USB Documentation update: USB error codes This patch fixes a documentation error I made earlier and clears up the meaning of the -ETIMEDOUT error code in urb->status. Some host controller drivers _do_ use that code to i

[linux-usb-devel] [PATCH] USB: make iInterface string cached

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.141, 2005/03/08 00:54:56-08:00, [EMAIL PROTECTED] [PATCH] USB: make iInterface string cached Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/usb/core/message.c |9 + drivers/usb/core/sysfs.c | 39 ++- include/

[linux-usb-devel] [PATCH] USB: cache the product, manufacturer, and serial number strings at device insertion.

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.138, 2005/03/08 00:53:47-08:00, [EMAIL PROTECTED] [PATCH] USB: cache the product, manufacturer, and serial number strings at device insertion. This should fix a lot of issues with broken devices that can't handle retrieving strings while they are doing something else (strings

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.133, 2005/03/08 00:43:29-08:00, [EMAIL PROTECTED] [PATCH] USB: Clear endpoint toggles in usb_set_interface 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 specificatio

[linux-usb-devel] [PATCH] USB: Initialize connected ports on newly-activated hubs

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.25, 2005/03/07 22:35:24-08:00, [EMAIL PROTECTED] [PATCH] USB: Initialize connected ports on newly-activated hubs This patch changes the mechanism used for detecting devices that were already connected to a hub at the time the hub was activated. This can occur in several differ

[linux-usb-devel] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.125, 2005/03/08 00:40:13-08:00, [EMAIL PROTECTED] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd This patch contains the changes for the core hcd-pci file and the uhci-hcd driver. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAI

[linux-usb-devel] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.131, 2005/03/08 00:42:37-08:00, [EMAIL PROTECTED] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd This patch contains the changes to the sl811-hcd driver. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/u

[linux-usb-devel] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.130, 2005/03/08 00:42:13-08:00, [EMAIL PROTECTED] [PATCH] USBcore: implement usb_add_hcd and usb_remove_hcd This patch contains the changes to the ohci-pxa27x driver. Signed-off-by: Alan Stern <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.54, 2005/03/08 00:02:54-08:00, [EMAIL PROTECTED] [PATCH] usb/message: move msecs change into usb_start_wait_urb() After discussion with gregkh on IRC, I realized that the conversion can be pushed one layer further down into usb_start_wait_urb(), as only usb_{control,bulk}_msg()

[linux-usb-devel] [PATCH] USB: omap_udc handles two more devel boards

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.40, 2005/03/07 22:56:17-08:00, [EMAIL PROTECTED] [PATCH] USB: omap_udc handles two more devel boards This teaches omap_udc how to work on two more OMAP development boards: - OMAP 5912 OSK, a starter kit; - OMAP 1710 H3, more or less an H2 with a newer OMAP chip (0.90 nm et

[linux-usb-devel] [PATCH] USB Storage: Unusual_devs entry for Nikon DSC D70

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.151, 2005/03/08 01:04:22-08:00, [EMAIL PROTECTED] [PATCH] USB Storage: Unusual_devs entry for Nikon DSC D70 Here's a new unusual_devs.h entry for the Nikon DSC D70 camera, which suffers the common problem of reporting one more sector than it actually has. Signed-off-by: Alan S

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.98, 2005/03/08 00:22:07-08:00, [EMAIL PROTECTED] [PATCH] usb/whiteheat: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMA

[linux-usb-devel] [PATCH] USB: usbnet uses NET_IP_ALIGN

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.117, 2005/03/08 00:36:42-08:00, [EMAIL PROTECTED] [PATCH] USB: usbnet uses NET_IP_ALIGN Go back to aligning RX packets to make the IP layer happy, now that there's an appropriately platform-specific way to do this. This should be only a performance tweak. However, the alignme

[linux-usb-devel] [PATCH] usb/mdc800: use wait_event_timeout()

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.20, 2005/03/07 22:33:35-08:00, [EMAIL PROTECTED] [PATCH] usb/mdc800: use wait_event_timeout() Use wait_event_timeout() instead of custom wait-queue code. Remove now unused variables. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMA

[linux-usb-devel] [PATCH] USB: usbfs fix for data loss in message.c

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.121, 2005/03/08 00:38:29-08:00, [EMAIL PROTECTED] [PATCH] USB: usbfs fix for data loss in message.c This is my fix for usbfs losing data when the urb is timed out but already contains data. Signed-off-by: Brian Murphy <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartm

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.104, 2005/03/08 00:24:43-08:00, [EMAIL PROTECTED] [PATCH] w1/dscore: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

[linux-usb-devel] [PATCH] usb-storage: Don't log expected signatures

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.119, 2005/03/08 00:37:33-08:00, [EMAIL PROTECTED] [PATCH] usb-storage: Don't log expected signatures This fairly trivial patch makes three small changes: Correct a typo in a comment. Don't print a debugging message when a USB mass-storage device uses t

[linux-usb-devel] [PATCH] USB: add 'distrust_firmware' option to ohci

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.23, 2005/03/07 22:34:40-08:00, [EMAIL PROTECTED] [PATCH] USB: add 'distrust_firmware' option to ohci This replaces an undocumented/experimental "power_switching" flag with a more useful one that lets the driver rely on the boot firmware to report such capabilities. The driver

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.82, 2005/03/08 00:15:09-08:00, [EMAIL PROTECTED] [PATCH] usb/uss720: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.110, 2005/03/08 00:27:22-08:00, [EMAIL PROTECTED] [PATCH] dvb/cinergyT2: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EM

[linux-usb-devel] [PATCH] usb/cypress_m8: replace schedule_timeout() with msleep()

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.15, 2005/03/07 22:21:24-08:00, [EMAIL PROTECTED] [PATCH] usb/cypress_m8: replace schedule_timeout() with msleep() Description: Use msleep() instead of schedule_timeout() to guarantee the task delays as expected. The current code is not incorrect. Using msleep(), though, encoura

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.68, 2005/03/08 00:09:04-08:00, [EMAIL PROTECTED] [PATCH] usb/ibmcam: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separa

[linux-usb-devel] [PATCH] USB Storage: devices which don't process PREVENT-ALLOW MEDIUM REMOVAL

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.14, 2005/03/07 22:21:00-08:00, [EMAIL PROTECTED] [PATCH] USB Storage: devices which don't process PREVENT-ALLOW MEDIUM REMOVAL This patch started life as as423, and has been re-generated against the current tip. Some storage devices don't like PREVENT-ALLOW MEDIUM REMOVAL comm

[linux-usb-devel] [PATCH] USB: Add ASIX AX88772 10/100 Ethernet support to usbnet

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.31, 2005/03/07 22:51:55-08:00, [EMAIL PROTECTED] [PATCH] USB: Add ASIX AX88772 10/100 Ethernet support to usbnet * Add support for the ASIX AX88772 10/100 Ethernet chip * Fix ax8817x_bind to use allocated buffer to avoid DMA on the stack * Fix ax8817x_bind error handling to ens

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.64, 2005/03/08 00:07:18-08:00, [EMAIL PROTECTED] [PATCH] usb/powermate: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a sep

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.102, 2005/03/08 00:23:52-08:00, [EMAIL PROTECTED] [PATCH] net/irda-usb: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMA

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.56, 2005/03/08 00:03:49-08:00, [EMAIL PROTECTED] [PATCH] usb/audio: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

[linux-usb-devel] [PATCH] dvb/dvb-ttusb-budget: change parameters of usb_{control,bulk}_msg() to msecs

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.112, 2005/03/08 00:28:14-08:00, [EMAIL PROTECTED] [PATCH] dvb/dvb-ttusb-budget: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamu

[linux-usb-devel] [PATCH] USB: add

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.38, 2005/03/07 22:55:19-08:00, [EMAIL PROTECTED] [PATCH] USB: add This adds a new header file, with definitions for the CDC class constants and structures used by various drivers. For now this only has the ones Linux actually uses. Each one is used in at least two or three

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.94, 2005/03/08 00:20:21-08:00, [EMAIL PROTECTED] [PATCH] usb/mct_u232: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAI

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.72, 2005/03/08 00:10:49-08:00, [EMAIL PROTECTED] [PATCH] usb/sn9c102: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

[linux-usb-devel] [PATCH] USB storage: make IGNORE_RESIDUE apply for reads (in addition to writes)

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.8, 2005/03/07 22:18:46-08:00, [EMAIL PROTECTED] [PATCH] USB storage: make IGNORE_RESIDUE apply for reads (in addition to writes) This patch was originally as406. I've rediffed it against a current tree. This patch makes the iGNORE_RESIDUE flag apply to reads (as well as write

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.60, 2005/03/08 00:05:35-08:00, [EMAIL PROTECTED] [PATCH] usb/hub: change parameters of usb_{control,bulk}_msg() to msecs 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 p

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.95, 2005/03/08 00:20:48-08:00, [EMAIL PROTECTED] [PATCH] usb/ti_usb_3410_5052: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamud

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.81, 2005/03/08 00:14:43-08:00, [EMAIL PROTECTED] [PATCH] usb/usbled: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.90, 2005/03/08 00:18:33-08:00, [EMAIL PROTECTED] [PATCH] usb/ipw: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PRO

[linux-usb-devel] [PATCH] usb/io_edgeport: remove interruptible_sleep_on_timeout() usage

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.34, 2005/03/07 22:53:26-08:00, [EMAIL PROTECTED] [PATCH] usb/io_edgeport: remove interruptible_sleep_on_timeout() usage On Tue, Feb 01, 2005 at 11:43:08AM -0800, Nishanth Aravamudan wrote: > This should fix the behavior of the previous patch (probably not noticed yet). > The wa

[linux-usb-devel] [PATCH] USB: serial/acm gadget uses

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.46, 2005/03/07 23:16:18-08:00, [EMAIL PROTECTED] [PATCH] USB: serial/acm gadget uses This converts the serial/ACM gadget driver to use , again a net code shrink. It also gets rid of several "sparse -Wcontext -Wbitwise" warnings; again, excepting the cases where the gadget dri

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.59, 2005/03/08 00:05:09-08:00, [EMAIL PROTECTED] [PATCH] usb/devio: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

[linux-usb-devel] [PATCH] USB: usbnet, cleanups and suspend/resume calls

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.42, 2005/03/07 22:57:11-08:00, [EMAIL PROTECTED] [PATCH] USB: usbnet, cleanups and suspend/resume calls This has some small updates to the "usbnet" driver: - Remove an unused debug-only symbol - Make the net1080 minidriver pass "sparse -Wbitwise" - Add suspend/resume method

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.89, 2005/03/08 00:18:07-08:00, [EMAIL PROTECTED] [PATCH] usb/ipaq: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PR

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.79, 2005/03/08 00:13:49-08:00, [EMAIL PROTECTED] [PATCH] usb/phidgetkit: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EM

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.96, 2005/03/08 00:21:14-08:00, [EMAIL PROTECTED] [PATCH] usb/visor: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

[linux-usb-devel] USB: revert wacom driver patch.

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.44, 2005/03/07 23:13:13-08:00, [EMAIL PROTECTED] USB: revert wacom driver patch. Cset exclude: [EMAIL PROTECTED]|ChangeSet|20050308064955|00321 Will be coming in through the bk-input tree instead. Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/usb/input/waco

[linux-usb-devel] [PATCH] USB: Retry more aggressively during device initialization

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.17, 2005/03/07 22:32:28-08:00, [EMAIL PROTECTED] [PATCH] USB: Retry more aggressively during device initialization This patch make the hub driver's device initialization routine more aggressive about detecting errors and retrying. It checks the result of the 64-byte GET-DESCRI

[linux-usb-devel] [PATCH] USB: cdc-acm uses

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.47, 2005/03/07 23:16:45-08:00, [EMAIL PROTECTED] [PATCH] USB: cdc-acm uses This makes cdc-acm use the file. It (still) passes "sparse -Wbitwise" on those fields. Signed-off-by: David Brownell <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drive

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.84, 2005/03/08 00:15:59-08:00, [EMAIL PROTECTED] [PATCH] usb/rtl8150: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.92, 2005/03/08 00:19:28-08:00, [EMAIL PROTECTED] [PATCH] usb/keyspan_pda: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[E

[linux-usb-devel] [PATCH] USB: Ethernet/RNDIS build fix on PXA25x

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.39, 2005/03/07 22:55:48-08:00, [EMAIL PROTECTED] [PATCH] USB: Ethernet/RNDIS build fix on PXA25x This fixes a build problem with the RNDIS support on PXA25x processors. It's useful to help OpenZaurus win even bigger ... current OpenEmbedded builds already bundle this patch. Si

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.71, 2005/03/08 00:10:23-08:00, [EMAIL PROTECTED] [PATCH] usb/se401: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separat

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.61, 2005/03/08 00:06:00-08:00, [EMAIL PROTECTED] [PATCH] usb/hid-core: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a sepa

[linux-usb-devel] [PATCH] usb/hid-core: use wait_event_timeout()

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.28, 2005/03/07 22:50:25-08:00, [EMAIL PROTECTED] [PATCH] usb/hid-core: use wait_event_timeout() Use wait_event_timeout() instead of custom wait-queue code. Remove now unused variables. Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[E

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.87, 2005/03/08 00:17:13-08:00, [EMAIL PROTECTED] [PATCH] usb/ezusb: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

[linux-usb-devel] [PATCH] USB: fix error in usb_skel.c

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.118, 2005/03/08 00:37:10-08:00, [EMAIL PROTECTED] [PATCH] USB: fix error in usb_skel.c Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/usb/usb-skeleton.c |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -Nru a/drivers/usb/usb-skeleton.c b/driver

[linux-usb-devel] [PATCH] USB: teach gadget drivers about s3c2410_udc

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.116, 2005/03/08 00:36:16-08:00, [EMAIL PROTECTED] [PATCH] USB: teach gadget drivers about s3c2410_udc This patch makes gadget drivers recognize the UDC controller in the Samsung s3c2310 (ARMv4T). This is used in the iPaq H1940, partially supported by Linux, as well as various

[linux-usb-devel] [PATCH] usb/ati_remote: use wait_event_timeout()

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.22, 2005/03/07 22:34:19-08:00, [EMAIL PROTECTED] [PATCH] usb/ati_remote: use wait_event_timeout() Description: Use wait_event_timeout() instead of custom wait-queue code. The current code uses TASK_INTERRUPTIBLE but doesn't seem to care about signals so TASK_UNINTERRUPTIBLE sho

[linux-usb-devel] [PATCH] USB: remove UB checks in the usb-storage driver.

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.9, 2005/03/07 22:19:06-08:00, [EMAIL PROTECTED] [PATCH] USB: remove UB checks in the usb-storage driver. This allows either the ub or usb-storage driver to bind to the same device, allowing people to use both without rebuilding their kernels. It can be a bit messy at times...

[linux-usb-devel] [PATCH] USB: fix types in usb suspend

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.36, 2005/03/07 22:54:20-08:00, [EMAIL PROTECTED] [PATCH] USB: fix types in usb suspend This fixes types in USB w.r.t. driver model. It should not actually change any code. Please apply, From: Bernard Blackham <[EMAIL PROTECTED]> Signed-off-by: Pavel Machek <[EMAIL PROTECTED]>

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.57, 2005/03/08 00:04:16-08:00, [EMAIL PROTECTED] [PATCH] usb/cdc-acm: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.74, 2005/03/08 00:11:43-08:00, [EMAIL PROTECTED] [PATCH] usb/vicam: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

[linux-usb-devel] [PATCH] USB: SiS USB2VGA minor fix.

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.3, 2005/03/07 22:16:51-08:00, [EMAIL PROTECTED] [PATCH] USB: SiS USB2VGA minor fix. here is a tiny, small update for the sisusb driver. It fixes one spacing issue, one (internal) API issue and one endian issue (stupid copy/paste error) Signed-off by: Thomas Winischhofer <[EMAI

[linux-usb-devel] [PATCH] usb/auerswald: use wait_event_timeout()

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.21, 2005/03/07 22:33:54-08:00, [EMAIL PROTECTED] [PATCH] usb/auerswald: use wait_event_timeout() Use wait_event_timeout() instead of custom wait-queue code. There might be a problem with returning without adding/removing to the waitqueue before wait_event_timeout() is called. I

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.66, 2005/03/08 00:08:11-08:00, [EMAIL PROTECTED] [PATCH] usb/mtouchusb: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a sep

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.69, 2005/03/08 00:09:31-08:00, [EMAIL PROTECTED] [PATCH] usb/konicawc: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a sepa

[linux-usb-devel] [PATCH] USB ftdi_sio: an rs485 adaptor from 4n-galaxy.de

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.16, 2005/03/07 22:32:07-08:00, [EMAIL PROTECTED] [PATCH] USB ftdi_sio: an rs485 adaptor from 4n-galaxy.de This patch adds support for an rs485 adaptor from 4n-galaxy.de. Signed-off-by: Jim Radford <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> dr

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.77, 2005/03/08 00:12:56-08:00, [EMAIL PROTECTED] [PATCH] usb/idmouse: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

[linux-usb-devel] [PATCH] usb/message: make usb_{control,bulk}_msg() use msecs

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.51, 2005/03/07 23:18:40-08:00, [EMAIL PROTECTED] [PATCH] usb/message: make usb_{control,bulk}_msg() use msecs Change the units of the timeout parameter in both usb_control_msg() and usb_bulk_msg() from jiffies to milliseconds. This is the core patch upon which the remaining one

[linux-usb-devel] [PATCH] USB: add usbmon, a USB monitoring framework

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.33, 2005/03/07 22:52:55-08:00, [EMAIL PROTECTED] [PATCH] USB: add usbmon, a USB monitoring framework This patch adds so-called "usbmon", or USB monitoring framework, similar to what tcpdump provides for Ethernet. This is an initial version, but it should be safe and useful. It

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.70, 2005/03/08 00:09:57-08:00, [EMAIL PROTECTED] [PATCH] usb/ov511: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. USB_CTRL_{GET,SET}_TIMEOUT were converted to milliseconds in a separat

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.109, 2005/03/08 00:26:55-08:00, [EMAIL PROTECTED] [PATCH] video/cpia_usb: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[E

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.103, 2005/03/08 00:24:17-08:00, [EMAIL PROTECTED] [PATCH] net/stir4200: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMA

[linux-usb-devel] [PATCH] USB: fix up compiler warnings when CONFIG_USB_DEBUG is not set.

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.144, 2005/03/08 00:55:59-08:00, [EMAIL PROTECTED] [PATCH] USB: fix up compiler warnings when CONFIG_USB_DEBUG is not set. As pointed out by Kay Sievers <[EMAIL PROTECTED]> Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/usb/core/hub.c |2 +- 1 files change

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.58, 2005/03/08 00:04:43-08:00, [EMAIL PROTECTED] [PATCH] usb/usblp: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.88, 2005/03/08 00:17:40-08:00, [EMAIL PROTECTED] [PATCH] usb/io_ti: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL P

[linux-usb-devel] [PATCH] USB: UHCI: Fix build errors when CONFIG_DEBUG_FS isn't set

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.50, 2005/03/07 23:18:12-08:00, [EMAIL PROTECTED] [PATCH] USB: UHCI: Fix build errors when CONFIG_DEBUG_FS isn't set > I've dropped this now. It caused the usb-bk tree to be dropped from the > -mm releases due to it causing build errors if CONFIG_DEBUG_FS not being > enabled.

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.55, 2005/03/08 00:03:23-08:00, [EMAIL PROTECTED] [PATCH] usb/speedtch: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAI

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.76, 2005/03/08 00:12:32-08:00, [EMAIL PROTECTED] [PATCH] usb/w9968cf: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.91, 2005/03/08 00:19:01-08:00, [EMAIL PROTECTED] [PATCH] usb/ir-usb: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.86, 2005/03/08 00:16:49-08:00, [EMAIL PROTECTED] [PATCH] usb/belkin_sa: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMA

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.113, 2005/03/08 00:28:41-08:00, [EMAIL PROTECTED] [PATCH] dvb/ttusb_dec: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EM

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.99, 2005/03/08 00:22:34-08:00, [EMAIL PROTECTED] [PATCH] usb/usb-skeleton: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[

[linux-usb-devel] [PATCH] USB: give sisusb a valid minor number (133 - 140)

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.4, 2005/03/07 22:17:17-08:00, [EMAIL PROTECTED] [PATCH] USB: give sisusb a valid minor number (133 - 140) Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]> drivers/usb/misc/sisusbvga/sisusb.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -Nru a/drivers

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.85, 2005/03/08 00:16:23-08:00, [EMAIL PROTECTED] [PATCH] usb/usbnet: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Remove unused jiffy-unit constant. Patch is compile-tested. Signed-o

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

2005-03-08 Thread Greg KH
ChangeSet 1.2020.1.83, 2005/03/08 00:15:32-08:00, [EMAIL PROTECTED] [PATCH] usb/catc: change parameters of usb_{control,bulk}_msg() to msecs Change units of parameters being passed to usb_{control,bulk}_msg() to milliseconds. Patch is compile-tested. Signed-off-by: Nishanth Aravamudan <[EMAIL PR

  1   2   >