Re: [linux-usb-devel] git-input.patch kills my USB mouse

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 01:57:20 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: On Wednesday 27 September 2006 23:49, Andrew Morton wrote: On Wed, 27 Sep 2006 23:11:49 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: Works here on basically 2.6.18 + my tree. Try current-mainline +

Re: [linux-usb-devel] [PATCH 99/129] usbcore: add autosuspend/autoresume infrastructure

2006-09-28 Thread Olaf Hering
On Wed, Sep 27, Greg KH wrote: @@ -372,6 +379,15 @@ struct usb_device { int maxchild; /* Number of ports if hub */ struct usb_device *children[USB_MAXCHILDREN]; + +#ifdef CONFIG_PM + struct work_struct autosuspend; /* for delayed autosuspends */ +

Re: [linux-usb-devel] [PATCH 99/129] usbcore: add autosuspend/autoresume infrastructure

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 08:49:52 +0200 Olaf Hering [EMAIL PROTECTED] wrote: On Wed, Sep 27, Greg KH wrote: @@ -372,6 +379,15 @@ struct usb_device { int maxchild; /* Number of ports if hub */ struct usb_device *children[USB_MAXCHILDREN]; + +#ifdef CONFIG_PM

[linux-usb-devel] patch ohci-add-auto-stop-support.patch added to gregkh-2.6 tree

2006-09-28 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: [PATCH 3b/3] OHCI: add auto-stop support to my gregkh-2.6 tree. Its filename is ohci-add-auto-stop-support.patch This tree can be found at

[linux-usb-devel] patch usb-add-raritan-kvm-usb-dongle-to-the-hid_quirk_noget-blacklist.patch added to gregkh-2.6 tree

2006-09-28 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: USB: add Raritan KVM USB Dongle to the HID_QUIRK_NOGET blacklist to my gregkh-2.6 tree. Its filename is usb-add-raritan-kvm-usb-dongle-to-the-hid_quirk_noget-blacklist.patch This tree can be found at

Re: [linux-usb-devel] [PATCH 99/129] usbcore: add autosuspend/autoresume infrastructure

2006-09-28 Thread Greg KH
On Thu, Sep 28, 2006 at 12:09:59AM -0700, Andrew Morton wrote: On Thu, 28 Sep 2006 08:49:52 +0200 Olaf Hering [EMAIL PROTECTED] wrote: On Wed, Sep 27, Greg KH wrote: @@ -372,6 +379,15 @@ struct usb_device { int maxchild; /* Number of ports if hub */

[linux-usb-devel] patch usb-create-new-workqueue-thread-for-usb-autosuspend.patch added to gregkh-2.6 tree

2006-09-28 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: [PATCH] USB: create new workqueue thread for USB autosuspend to my gregkh-2.6 tree. Its filename is usb-create-new-workqueue-thread-for-usb-autosuspend.patch This tree can be found at

[linux-usb-devel] support for select in device driver

2006-09-28 Thread mgr
Hi, I am using code based on the usb-skeleton.c in the linux 2.6.16.16 kernel source code and would like to add support for using the function 'select' in user space. I found source code for implementing this in Linux Device Drivers 3, chapter 6, section poll and select, page 165. I have added

Re: [linux-usb-devel] [PATCH 1/3] driver for mcs7830 (aka DeLOCK) USB ethernet adapter

2006-09-28 Thread Arnd Bergmann
On Thursday 28 September 2006 03:28, David Brownell wrote: ... yes, I'd assume it's a hardware issue too.  Try different cables; if you have a fast 'scope, you might see what kind of eye diagram you get. Unfortunately, I don't have anything I could use to test this. Do you know how the

Re: [linux-usb-devel] [RFC/PATCH] EHCI Oops on CONFIG_NOT_COHERENT_CACHE system

2006-09-28 Thread Marcus Comstedt
David Brownell [EMAIL PROTECTED] writes: The use of kref was a simplification ... adopting an idiom that was used in many other places in the kernel. You're right that there was no need for its atomic aspect, since those refcounts should always have been protected by the driver spinlock.

Re: [linux-usb-devel] [PATCH 99/129] usbcore: add autosuspend/autoresume infrastructure

2006-09-28 Thread Alan Stern
On Thu, 28 Sep 2006, Andrew Morton wrote: On Thu, 28 Sep 2006 08:49:52 +0200 Olaf Hering [EMAIL PROTECTED] wrote: On Wed, Sep 27, Greg KH wrote: @@ -372,6 +379,15 @@ struct usb_device { int maxchild; /* Number of ports if hub */ struct usb_device

Re: [linux-usb-devel] git-input.patch kills my USB mouse

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 14:19:12 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: On 9/28/06, Andrew Morton [EMAIL PROTECTED] wrote: service gpm stop modprobe evbug wiggle mouse nothing appears in dmesg rmmod evbug service gpm start oops [ 64.692000] evbug.c: Connected device:

[linux-usb-devel] [PATCH]new id for kaweth

2006-09-28 Thread Oliver Neukum
Hi, this adds a new id to the kaweth driver. Please apply. Regards Oliver Signed-Off-By: Oliver Neukum [EMAIL PROTECTED] --- a/drivers/usb/net/kaweth.c 2006-09-20 05:42:06.0 +0200 +++ b/drivers/usb/net/kaweth.c 2006-09-28 22:08:28.0 +0200 @@ -165,6

Re: [linux-usb-devel] git-input.patch kills my USB mouse

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 15:56:08 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: On 9/28/06, Andrew Morton [EMAIL PROTECTED] wrote: Ho hum. Looks like there's a git-bisect in my immediate future. Don't do that yet - I think I see a suspicious place in mousedev_open. OK. I will try to

[linux-usb-devel] [PATCH]remove private debug macros from kaweth

2006-09-28 Thread Oliver Neukum
Hi, this kills the private debug macros from the kaweth driver. Please apply. Regards Oliver Signed-Off-By: Oliver Neukum [EMAIL PROTECTED] --- vanilla/drivers/usb/net/kaweth.c2006-09-20 05:42:06.0 +0200 +++ linux-2.6.18/drivers/usb/net/kaweth.c

Re: [linux-usb-devel] [GIT PATCH] USB patches for 2.6.18

2006-09-28 Thread Olaf Hering
On Wed, Sep 27, Greg KH wrote: Alan Stern: usbcore: remove usb_suspend_root_hub This change between -git8 and -git9 makes my keyboard unhappy: @@ -16,7 +16,7 @@ htab_address = 0xc0007c00 htab_hash_mask= 0x3

Re: [linux-usb-devel] [GIT PATCH] USB patches for 2.6.18

2006-09-28 Thread Alan Stern
On Fri, 29 Sep 2006, Olaf Hering wrote: On Wed, Sep 27, Greg KH wrote: Alan Stern: usbcore: remove usb_suspend_root_hub This change between -git8 and -git9 makes my keyboard unhappy: Another example of a bug for which the fix hasn't yet gone upstream to Linus. The -mm kernel

Re: [linux-usb-devel] [GIT PATCH] USB patches for 2.6.18

2006-09-28 Thread Linus Torvalds
On Thu, 28 Sep 2006, Alan Stern wrote: Another example of a bug for which the fix hasn't yet gone upstream to Linus. The -mm kernel should work. It you want to apply the fix yourself, it's these two patches: Greg, can we please feed fixes to me faster? Linus

Re: [linux-usb-devel] [GIT PATCH] USB patches for 2.6.18

2006-09-28 Thread Greg KH
On Thu, Sep 28, 2006 at 03:22:04PM -0700, Linus Torvalds wrote: On Thu, 28 Sep 2006, Alan Stern wrote: Another example of a bug for which the fix hasn't yet gone upstream to Linus. The -mm kernel should work. It you want to apply the fix yourself, it's these two patches: Greg,

Re: [linux-usb-devel] [GIT PATCH] USB patches for 2.6.18

2006-09-28 Thread Linus Torvalds
On Thu, 28 Sep 2006, Greg KH wrote: Greg, can we please feed fixes to me faster? Faster? My god man, I just found out a few minutes ago that these were causing problems for people. I had only applied them to my local tree about 12 hours ago :) Umm. I'm just saying that that fix was

[linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Greg KH
Here are some more USB bugfixes and device ids 2.6.18. They should all fix the reported problems in your current tree (if not, please let me know.) All of these changes have been in the -mm tree for a while. Please pull from:

Re: [linux-usb-devel] [GIT PATCH] USB patches for 2.6.18

2006-09-28 Thread Greg KH
On Thu, Sep 28, 2006 at 03:41:58PM -0700, Linus Torvalds wrote: On Thu, 28 Sep 2006, Greg KH wrote: Greg, can we please feed fixes to me faster? Faster? My god man, I just found out a few minutes ago that these were causing problems for people. I had only applied them to my

[linux-usb-devel] [PATCH 1/24] USB: new id for kaweth

2006-09-28 Thread Greg KH
From: Oliver Neukum [EMAIL PROTECTED] this adds a new id to the kaweth driver. Please apply. Signed-Off-By: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/net/kaweth.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git

[linux-usb-devel] [PATCH 2/24] USB: Add vendor / product ID to pl2303

2006-09-28 Thread Greg KH
From: Wesley PA4WDH [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/pl2303.c |1 + drivers/usb/serial/pl2303.h |4 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c

[linux-usb-devel] [PATCH 3/24] USB: unusual-devs entry for Nokia E60

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] This patch (as794) adds an unusual_devs entry for the Nokia E60. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/unusual_devs.h |7 +++ 1 files changed, 7 insertions(+), 0

[linux-usb-devel] [PATCH 4/24] USB: Pegasus driver failing for ADMtek 8515 network device

2006-09-28 Thread Greg KH
From: Petko Manolov [EMAIL PROTECTED] Address http://bugzilla.kernel.org/show_bug.cgi?id=7126 Attempting to read the ethernet ID directly from the eeprom somehow confuses ADM8515. Subsequent read requests to either the eeprom or the MII fail as well. Didn't dig much deeper, though. For

[linux-usb-devel] [PATCH 5/24] USB serial ftdi_sio: Add support for Tactrix OpenPort devices

2006-09-28 Thread Greg KH
From: Ian Abbott [EMAIL PROTECTED] This patch adds support for three OpenPort ECU data cables from Tactrix Inc. to the ftdi_sio driver's device ID table. One of the PIDs was supplied by Donour Sizemore on the ftdi-usb-sio-devel mailing list. The other two were added by myself after examining

[linux-usb-devel] [PATCH 6/24] USB: another device ID for ipaq

2006-09-28 Thread Greg KH
From: Matthias Urlichs [EMAIL PROTECTED] Add yet another device ID to the ipaq USB-serial driver. Signed-Off-By: Matthias Urlichs [EMAIL PROTECTED] Cc: Ganesh Varadarajan [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/ipaq.c |1 + 1 files

[linux-usb-devel] [PATCH 8/24] USB: add SeaLevel 2106 SeaLINK support to ftdi_sio

2006-09-28 Thread Greg KH
From: Justin Carlson [EMAIL PROTECTED] We have a couple of these USB-Serial converters around; they're slightly different from the 2104 models in that they can handle 500Kb/sec over RS422. The existing ftdi driver seems to work just fine if we add in the appropriate IDs. Patch is against

[linux-usb-devel] [PATCH 7/24] USB: New PhidgetKit 8/8/8 reset outputs after 2 seconds

2006-09-28 Thread Greg KH
From: Sean Young [EMAIL PROTECTED] New phidget interface kits (type 8/8/8) reset their outputs if they haven't received a set report for 2 seconds. Signed-off-by: Sean Young [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/phidgetkit.c | 56

[linux-usb-devel] [PATCH 10/24] ohci: Use ref-counting hotplug safe interfaces

2006-09-28 Thread Greg KH
From: Alan Cox [EMAIL PROTECTED] We want to avoid legacy APIs like pci_find_slot(). Signed-off-by: Alan Cox [EMAIL PROTECTED] Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/host/ohci-pci.c |3 ++- 1 files changed, 2

[linux-usb-devel] [PATCH 9/24] USB: Fix alignment of buffer passed down to -hub_control()

2006-09-28 Thread Greg KH
From: Mikael Pettersson [EMAIL PROTECTED] Implementations assume the buffer is at least 4 byte aligned. Signed-off-by: David S. Miller [EMAIL PROTECTED] Cc: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/hcd.c |3 ++- 1 files

[linux-usb-devel] [PATCH 11/24] usb-serial: possible irq lock inversion (PPP vs. usb/serial)

2006-09-28 Thread Greg KH
From: Peter Zijlstra [EMAIL PROTECTED] = [ INFO: possible irq lock inversion dependency detected ] --- drivers/usb/serial/cyberjack.c |6 +++--- drivers/usb/serial/generic.c |6 +++--- drivers/usb/serial/ipw.c |6

[linux-usb-devel] [PATCH 14/24] USB: fixes kerneldoc errors in usbcore-auto(susp/res)-patch

2006-09-28 Thread Greg KH
From: Henrik Kretzschmar [EMAIL PROTECTED] Fixes kerneldoc errors on usb/core/driver.c, which occured in 2.6.18-rc6-mm2 gregkh-usb-usbcore-add-autosuspend-autoresume-infrastructure.patch Signed-off-by: Henrik Kretzschmar [EMAIL PROTECTED] Acked-by: Alan Stern [EMAIL PROTECTED] Signed-off-by:

[linux-usb-devel] [PATCH 12/24] USB: asix - Add alternate device IDs for Dlink DUB-E100 Rev B1

2006-09-28 Thread Greg KH
From: David Hollis [EMAIL PROTECTED] Add alternate device IDs for Dlink DUB-E100 Rev B1 Signed-off-by: David Hollis [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/net/asix.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git

[linux-usb-devel] [PATCH 13/24] USB: add Raritan KVM USB Dongle to the HID_QUIRK_NOGET blacklist

2006-09-28 Thread Greg KH
From: Raghavendra Biligiri [EMAIL PROTECTED] During Installation the host tries to enumerate the keyboard/mouse dongle for the Raritan KVM.At this time timeouts have been observed Adding the Raritan KVM USB dongle to the blacklist fixes this issue. Signed-off-by: Raghavendra Biligiri [EMAIL

[linux-usb-devel] [PATCH 15/24] USB: microtek usb scanner: Scsi_Cmnd conversion

2006-09-28 Thread Greg KH
From: Henrik Kretzschmar [EMAIL PROTECTED] Converts obsolete typedef'd Scsi_Cmnd into struct scsi_cmnd. Signed-off-by: Henrik Kretzschmar [EMAIL PROTECTED] Cc: James Bottomley [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] ---

[linux-usb-devel] [PATCH 16/24] USB Storage: unusual_devs.h entry for Sony Ericsson P990i

2006-09-28 Thread Greg KH
From: Jan Mate [EMAIL PROTECTED] USB Storage: this patch adds support for Sony Ericsson P990i Signed-off-by: Jan Mate [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/unusual_devs.h |7 +++ 1

[linux-usb-devel] [PATCH 17/24] USB: create new workqueue thread for USB autosuspend

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] This patch (as787) creates a new workqueue thread to handle delayed USB autosuspend requests. Previously the code used keventd. However it turns out that the hub driver's suspend routine calls flush_scheduled_work(), making it a poor candidate for running in

[linux-usb-devel] [PATCH 18/24] USB: dummy-hcd: fix warn-unused-result messages

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] This patch (as758) fixes the warn-unused-result messages in dummy-hcd. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/dummy_hcd.c | 33 +++-- 1 files changed,

[linux-usb-devel] [PATCH 19/24] USB: g_file_storage: fix ignoring return value warnings

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] This patch (as792) fixes ignoring return value warnings in file_storage.c. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/file_storage.c | 19 --- 1 files changed, 12

[linux-usb-devel] [PATCH 20/24] USB: allow both root-hub interrupts and polling

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] Originally I didn't think any host controller driver would ever use interrupts and polling at the same time, but it turns out ohci-hcd wants to do exactly that. This patch (as788) makes it possible. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by:

[linux-usb-devel] [PATCH 21/24] OHCI: remove existing autosuspend code

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] The autosuspend technique used by ohci-hcd doesn't mesh well with the newer USB core autosuspend code. This patch (as789) removes ohci-hcd's autosuspend support. Now the driver will be usable, but it won't automatically go into a low-power state when no

[linux-usb-devel] [PATCH 22/24] OHCI: add auto-stop support

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] This patch (as790b) adds autostop support to ohci-hcd: the driver will automatically stop the host controller when no devices have been connected for at least one second. This feature is useful when the USB autosuspend facility isn't available, such as when

[linux-usb-devel] [PATCH 23/24] USB: fix autosuspend when CONFIG_PM isn't set

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] This patch (as791b) fixes things up to avoid compiler warnings or errors when CONFIG_USB_SUSPEND or CONFIG_PM isn't set. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/driver.c | 42

[linux-usb-devel] [PATCH 24/24] USB: g_file_storage: Set sense info Valid bit only when needed

2006-09-28 Thread Greg KH
From: Alan Stern [EMAIL PROTECTED] Strictly speaking, the Valid bit in SCSI sense data is supposed to be set only when the Information field contains a valid number. This patch (as793) turns off the Valid bit when the Information field hasn't been set. Signed-off-by: Alan Stern [EMAIL

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Linus Torvalds
On Thu, 28 Sep 2006, Greg KH wrote: Here are some more USB bugfixes and device ids 2.6.18. They should all fix the reported problems in your current tree (if not, please let me know.) All of these changes have been in the -mm tree for a while. Maybe I shouldn't have hurried you.

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Greg KH
On Thu, Sep 28, 2006 at 04:40:23PM -0700, Linus Torvalds wrote: On Thu, 28 Sep 2006, Greg KH wrote: Here are some more USB bugfixes and device ids 2.6.18. They should all fix the reported problems in your current tree (if not, please let me know.) All of these changes have been

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 16:40:23 -0700 (PDT) Linus Torvalds [EMAIL PROTECTED] wrote: On Thu, 28 Sep 2006, Greg KH wrote: Here are some more USB bugfixes and device ids 2.6.18. They should all fix the reported problems in your current tree (if not, please let me know.) All of these

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Greg KH
On Thu, Sep 28, 2006 at 04:59:51PM -0700, Andrew Morton wrote: On Thu, 28 Sep 2006 16:40:23 -0700 (PDT) Linus Torvalds [EMAIL PROTECTED] wrote: On Thu, 28 Sep 2006, Greg KH wrote: Here are some more USB bugfixes and device ids 2.6.18. They should all fix the reported problems

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Greg KH
On Thu, Sep 28, 2006 at 05:05:24PM -0700, Greg KH wrote: On Thu, Sep 28, 2006 at 04:59:51PM -0700, Andrew Morton wrote: On Thu, 28 Sep 2006 16:40:23 -0700 (PDT) Linus Torvalds [EMAIL PROTECTED] wrote: On Thu, 28 Sep 2006, Greg KH wrote: Here are some more USB bugfixes

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread David Brownell
--- a/drivers/usb/host/ohci-hub.c~ohci-add-auto-stop-support-hack-hack +++ a/drivers/usb/host/ohci-hub.c @@ -132,6 +132,10 @@ static inline struct ed *find_head (stru return ed; } +#ifdef CONFIG_PM +static int ohci_restart(struct ohci_hcd *ohci); +#endif + /* caller has locked

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 17:05:24 -0700 Greg KH [EMAIL PROTECTED] wrote: +#ifdef CONFIG_PM +static int ohci_restart(struct ohci_hcd *ohci); +#endif That #ifdef shouldn't be even needed. We'll get warning: 'ohci_restart' declared 'static' but never defined without it.

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Andrew Morton
On Thu, 28 Sep 2006 17:08:33 -0700 David Brownell [EMAIL PROTECTED] wrote: --- a/drivers/usb/host/ohci-hub.c~ohci-add-auto-stop-support-hack-hack +++ a/drivers/usb/host/ohci-hub.c @@ -132,6 +132,10 @@ static inline struct ed *find_head (stru return ed; } +#ifdef CONFIG_PM

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread David Brownell
On Thursday 28 September 2006 5:20 pm, Andrew Morton wrote: On Thu, 28 Sep 2006 17:08:33 -0700 David Brownell [EMAIL PROTECTED] wrote: ... reviewing and testing those new OHCI changes is still on my list; erm, we prefer to do that before code hits mainline. Exactly why I mentioned the

Re: [linux-usb-devel] [GIT PATCH] More USB patches for 2.6.18

2006-09-28 Thread Horst H. von Brand
Andrew Morton [EMAIL PROTECTED] wrote: [...] That's the some gccs dont like static function decls in that scope thing. I fixed it (unpleasantly) like this: diff -puN drivers/usb/host/ohci-hub.c~ohci-add-auto-stop-support-hack-hack drivers/usb/host/ohci-hub.c ---

Re: [linux-usb-devel] git-input.patch kills my USB mouse

2006-09-28 Thread Dmitry Torokhov
On Thursday 28 September 2006 16:37, Andrew Morton wrote: On Thu, 28 Sep 2006 15:56:08 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: On 9/28/06, Andrew Morton [EMAIL PROTECTED] wrote: Ho hum. Looks like there's a git-bisect in my immediate future. Don't do that yet - I think

Re: [linux-usb-devel] git-input.patch kills my USB mouse

2006-09-28 Thread Andrew Morton
On Fri, 29 Sep 2006 00:38:18 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: On Thursday 28 September 2006 16:37, Andrew Morton wrote: On Thu, 28 Sep 2006 15:56:08 -0400 Dmitry Torokhov [EMAIL PROTECTED] wrote: On 9/28/06, Andrew Morton [EMAIL PROTECTED] wrote: Ho hum. Looks