Re: [linux-usb-devel] [PATCH] USB-Core, fix cardreader not found during init

2007-08-13 Thread Greg KH
On Mon, Aug 13, 2007 at 11:18:21PM +0200, Steffen Koepf wrote: > On Mon, Aug 13, 2007 at 05:04:40PM -0400, Alan Stern wrote: > > On further thought, perhaps we shouldn't retry on -ETIMEDOUT errors. > > > > - if (result == 0 || result == -EPIPE) > > + if (result <= 0 && result !

[linux-usb-devel] [PATCH] [TRIVIAL] fix spelling mistake in drivers/usb/host/Kconfig

2007-08-13 Thread mbressers
From: Maarten Bressers <[EMAIL PROTECTED]> Greetings, A very trivial patch: fixes a spelling mistake in drivers/usb/host/Kconfig, wrt the R8A66597_HCD driver. The patch applies to kernel 2.6.23-rc3. Signed-off by: Maarten Bressers <[EMAIL PROTECTED]> --- --- a/drivers/usb/host/Kconfig.orig

Re: [linux-usb-devel] [PATCH] USB-Core, fix cardreader not found during init

2007-08-13 Thread Steffen Koepf
On Mon, Aug 13, 2007 at 05:04:40PM -0400, Alan Stern wrote: > On further thought, perhaps we shouldn't retry on -ETIMEDOUT errors. > > - if (result == 0 || result == -EPIPE) > + if (result <= 0 && result != -ETIMEDOUT) I can test this patch if desired. But is it planned to

Re: [linux-usb-devel] [PATCH] USB-Core, fix cardreader not found during init

2007-08-13 Thread Alan Stern
On Mon, 13 Aug 2007, Alan Stern wrote: > This patch is the wrong way to do it. You should try this patch > instead. > > Alan Stern > > > Index: 2.6.22/drivers/usb/core/message.c > === > --- 2.6.22.orig/drivers/usb/core/message.c

Re: [linux-usb-devel] [PATCH] USB-Core, fix cardreader not found during init

2007-08-13 Thread Alan Stern
On Mon, 13 Aug 2007, Steffen Koepf wrote: > From: Steffen Koepf <[EMAIL PROTECTED]> > > There is a USB-Device Init-Problem with the Apacer AE161 USB-Cardreader, > which contains the Chip AU6375. The Cardreader init fails in about 50% > of system boots, with the following lines: > > usb 1-6: unab

[linux-usb-devel] [PATCH] USB-Core, fix cardreader not found during init

2007-08-13 Thread Steffen Koepf
From: Steffen Koepf <[EMAIL PROTECTED]> There is a USB-Device Init-Problem with the Apacer AE161 USB-Cardreader, which contains the Chip AU6375. The Cardreader init fails in about 50% of system boots, with the following lines: usb 1-6: unable to read config index 0 descriptor/all usb 1-6: can't r

[linux-usb-devel] [PATCH] [TRIVIAL] fix spelling mistake in drivers/usb/host/Kconfig

2007-08-13 Thread mbressers
From: Maarten Bressers <[EMAIL PROTECTED]> Greetings, A very trivial patch: fixes a spelling mistake in drivers/usb/host/Kconfig, wrt the R8A66597_HCD driver. The patch applies to kernel 2.6.23-rc3. Signed-off by: Maarten Bressers <[EMAIL PROTECTED]> --- --- a/drivers/usb/host/Kconfig.orig

Re: [linux-usb-devel] [PATCH] [497/2many] MAINTAINERS - USB HUB DRIVER

2007-08-13 Thread Joe Perches
On Mon, 2007-08-13 at 08:36 -0700, Johannes Erdfelt wrote: > Completely agreed. The hub driver entry should be removed. The hub > driver is part of the USB core and should be maintained as such. Removed - This SF.net email i

Re: [linux-usb-devel] [PATCH] [490/2many] MAINTAINERS - USB BLOCK DRIVER (UB ub)

2007-08-13 Thread Joe Perches
On Mon, 2007-08-13 at 16:11 +0200, Stefan Richter wrote: > Joe Perches wrote: > > I'll fix it and resubmit about 10 non-individual patches > > in a couple of days. > > Better resubmit a single updated combo patch, for the entire MAINTAINERS > file in one go. Unless you receive general objections.

Re: [linux-usb-devel] [PATCH] [497/2many] MAINTAINERS - USB HUB DRIVER

2007-08-13 Thread Johannes Erdfelt
On Mon, Aug 13, 2007, David Brownell <[EMAIL PROTECTED]> wrote: > I'm also concerned with the reality that the MAINTAINERS file is > not accurate. The $SUBJECT patch is one example; the named maintainer > is no longer active (in that area, at least) and the named driver is > not actually separable

Re: [linux-usb-devel] [PATCH] [497/2many] MAINTAINERS - USB HUB DRIVER

2007-08-13 Thread Stefan Richter
David Brownell wrote: > Is there general agreement that these "F:" entries should be used? > Rather than, say, embedding references in the relevant parts of > the source tree, adjacent to those files, where they would be more > visible to people making relevant changes. > > I'm also concerned with

Re: [linux-usb-devel] [PATCH] [490/2many] MAINTAINERS - USB BLOCK DRIVER (UB ub)

2007-08-13 Thread Stefan Richter
Joe Perches wrote: > I'll fix it and resubmit about 10 non-individual patches > in a couple of days. Better resubmit a single updated combo patch, for the entire MAINTAINERS file in one go. Unless you receive general objections. -- Stefan Richter -=-=-=== =--- -==-= http://arcgraph.de/sr/ -

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-13 Thread Oliver Neukum
Am Montag 13 August 2007 schrieb Alan Cox: > On Mon, 13 Aug 2007 15:48:40 +0200 > Oliver Neukum <[EMAIL PROTECTED]> wrote: > > > Am Montag 13 August 2007 schrieb Alan Cox: > > > +static int iuu_alloc_buf(struct iuu_private *priv) > > > > +{ > > > > + priv->buf = kzalloc(256, GFP_KERNEL); >

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-13 Thread Alan Cox
On Mon, 13 Aug 2007 15:48:40 +0200 Oliver Neukum <[EMAIL PROTECTED]> wrote: > Am Montag 13 August 2007 schrieb Alan Cox: > > +static int iuu_alloc_buf(struct iuu_private *priv) > > > +{ > > > + priv->buf = kzalloc(256, GFP_KERNEL); > > > + priv->dbgbuf = kzalloc(256, GFP_KERNEL); > > > + priv->wr

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-13 Thread Alan Cox
> +static int > +iuu_ioctl(struct usb_serial_port *port, struct file *file, unsigned int cmd, > + unsigned long arg) > +{ > + This is very wrong. Your driver may not intercept TCGETS and similar ioctls. In fact you don't seem to need any of it. Terminal changes are handled by the set_termios

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-13 Thread Oliver Neukum
Am Montag 13 August 2007 schrieb Alan Cox: > +static int iuu_alloc_buf(struct iuu_private *priv) > > +{ > > + priv->buf = kzalloc(256, GFP_KERNEL); > > + priv->dbgbuf = kzalloc(256, GFP_KERNEL); > > + priv->writebuf = kzalloc(256, GFP_KERNEL); > > + if (!priv->buf || !priv->dbgbuf || !priv

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-13 Thread Alan Cox
+static int iuu_alloc_buf(struct iuu_private *priv) > +{ > + priv->buf = kzalloc(256, GFP_KERNEL); > + priv->dbgbuf = kzalloc(256, GFP_KERNEL); > + priv->writebuf = kzalloc(256, GFP_KERNEL); > + if (!priv->buf || !priv->dbgbuf || !priv->writebuf) { > + dbg("%s problem a

Re: [linux-usb-devel] [PATCH] [504/2many] MAINTAINERS - USB PEGASUS DRIVER

2007-08-13 Thread Petko Manolov
On Sun, 12 Aug 2007, [EMAIL PROTECTED] wrote: > Add file pattern to MAINTAINER entry > > Signed-off-by: Joe Perches <[EMAIL PROTECTED]> > > diff --git a/MAINTAINERS b/MAINTAINERS > index d822865..fc87fa7 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -4764,6 +4764,7 @@ L: linux-usb-devel

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-13 Thread Oliver Neukum
Am Sonntag 12 August 2007 schrieb [EMAIL PROTECTED]: > In this release, the driver use the interrupt context. > So no more latency problem. > I still kfree the buffers provided by the usb-serial framework. > > All comments/remarks are welcome > > This driver seems very stable ( tested with 5 read

Re: [linux-usb-devel] [PATCH] [497/2many] MAINTAINERS - USB HUB DRIVER

2007-08-13 Thread David Brownell
On Sunday 12 August 2007, [EMAIL PROTECTED] wrote: > Add file pattern to MAINTAINER entry > > Signed-off-by: Joe Perches <[EMAIL PROTECTED]> > I seem to be missing some context for these "2many" patches; and don't really see any in the MARC archives either. This seems like about 600 patches out

Re: [linux-usb-devel] [PATCH] [490/2many] MAINTAINERS - USB BLOCK DRIVER (UB ub)

2007-08-13 Thread Joe Perches
On Mon, 2007-08-13 at 00:04 -0700, Pete Zaitcev wrote: > I received two updates, and something jumped out: > > On Sun, 12 Aug 2007 23:38:00 -0700, [EMAIL PROTECTED] wrote: > > +F: drivers/block/ub.c > > On Sun, 12 Aug 2007 23:38:30 -0700, [EMAIL PROTECTED] wrote: > > +F: /drivers/usb/class/usblp.

Re: [linux-usb-devel] [PATCH] [490/2many] MAINTAINERS - USB BLOCK DRIVER (UB ub)

2007-08-13 Thread Pete Zaitcev
I received two updates, and something jumped out: On Sun, 12 Aug 2007 23:38:00 -0700, [EMAIL PROTECTED] wrote: > +F: drivers/block/ub.c On Sun, 12 Aug 2007 23:38:30 -0700, [EMAIL PROTECTED] wrote: > +F: /drivers/usb/class/usblp.c Why do some patterns start with a leading slash and others do

[linux-usb-devel] [PATCH] [508/2many] MAINTAINERS - USB SERIAL DIGI ACCELEPORT DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 93e31ac..b13366a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4799,12 +4799,14 @@ S: Maintained F: drivers/usb/serial/cyberjack.c USB SERIAL DIGI ACCELEP

[linux-usb-devel] [PATCH] [524/2many] MAINTAINERS - USB ZR364XX DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 6cfd315..c50b6b1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4954,6 +4954,8 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [523/2many] MAINTAINERS - USB ZD1201 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 16ddb78..6cfd315 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4945,6 +4945,7 @@ L:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net W: http

[linux-usb-devel] [PATCH] [522/2many] MAINTAINERS - USB ZC0301 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index a5c8d86..16ddb78 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4935,6 +4935,8 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [521/2many] MAINTAINERS - USB W996[87]CF DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 4dba8ee..a5c8d86 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4925,6 +4925,8 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [518/2many] MAINTAINERS - USB SUBSYSTEM

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index f177a2b..ae92220 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4895,6 +4895,11 @@ L: linux-usb-devel@lists.sourceforge.net W: http://www.linux-usb.org T:

[linux-usb-devel] [PATCH] [519/2many] MAINTAINERS - USB UHCI DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index ae92220..c670797 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4907,6 +4907,8 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [515/2many] MAINTAINERS - USB SERIAL KEYSPAN DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index df159d9..25500cc 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4866,6 +4866,7 @@ L:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net W: http

[linux-usb-devel] [PATCH] [516/2many] MAINTAINERS - USB SERIAL WHITEHEAT DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 25500cc..91a66c9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4875,6 +4875,7 @@ L:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net W: http

[linux-usb-devel] [PATCH] [517/2many] MAINTAINERS - USB SN9C1xx DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 91a66c9..f177a2b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4884,6 +4884,8 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [514/2many] MAINTAINERS - USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 42830d6..df159d9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4857,6 +4857,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [513/2many] MAINTAINERS - USB AUERSWALD DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 8b4d497..42830d6 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4849,6 +4849,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [511/2many] MAINTAINERS - USB SERIAL CYPRESS M8 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index b70f5f8..e540357 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4835,6 +4835,7 @@ L:linux-usb-devel@lists.sourceforge.net S: Maintained W: http://geoc

[linux-usb-devel] [PATCH] [512/2many] MAINTAINERS - USB SERIAL CYBERJACK PINPAD/E-COM DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index e540357..8b4d497 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4841,6 +4841,7 @@ USB SERIAL CYBERJACK PINPAD/E-COM DRIVER L: [EMAIL PROTECTED] L: linux-usb-d

[linux-usb-devel] [PATCH] [510/2many] MAINTAINERS - USB SERIAL BELKIN F5U103 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 728e53f..b70f5f8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4825,6 +4825,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [509/2many] MAINTAINERS - USB SERIAL DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index b13366a..728e53f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4814,6 +4814,10 @@ M: [EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [506/2many] MAINTAINERS - USB RTL8150 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 02bb359..25df49f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4781,6 +4781,7 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [505/2many] MAINTAINERS - USB PRINTER DRIVER (usblp)

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index fc87fa7..02bb359 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4772,6 +4772,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [504/2many] MAINTAINERS - USB PEGASUS DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index d822865..fc87fa7 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4764,6 +4764,7 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [503/2many] MAINTAINERS - USB OV511 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 23b7c3d..d822865 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4755,6 +4755,7 @@ L:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net W: http

[linux-usb-devel] [PATCH] [502/2many] MAINTAINERS - USB OPTION-CARD DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 94ce5ce..23b7c3d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4746,6 +4746,7 @@ P:Matthias Urlichs M: [EMAIL PROTECTED] L: linux-usb-devel@lists.sou

[linux-usb-devel] [PATCH] [501/2many] MAINTAINERS - USB OHCI DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 0d6b162..94ce5ce 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4738,6 +4738,8 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [499/2many] MAINTAINERS - USB KAWASAKI LSI DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 2759bc8..94d4bac 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4721,6 +4721,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [498/2many] MAINTAINERS - USB ISP116X DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index d46c083..2759bc8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4712,6 +4712,8 @@ P:Olav Kongas M: [EMAIL PROTECTED] L: linux-usb-devel@lists.sourcefo

[linux-usb-devel] [PATCH] [496/2many] MAINTAINERS - USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index ae24def..270952c 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4696,6 +4696,8 @@ M:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net T: git

[linux-usb-devel] [PATCH] [497/2many] MAINTAINERS - USB HUB DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 270952c..d46c083 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4705,6 +4705,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [494/2many] MAINTAINERS - USB ET61X[12]51 DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 5bec508..be2b366 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4679,6 +4679,7 @@ L:linux-usb-devel@lists.sourceforge.net L: [EMAIL PROTECTED] W: http

[linux-usb-devel] [PATCH] [495/2many] MAINTAINERS - USB GADGET/PERIPHERAL SUBSYSTEM

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index be2b366..ae24def 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4687,6 +4687,8 @@ M:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net W: http

[linux-usb-devel] [PATCH] [493/2many] MAINTAINERS - USB EHCI DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index b7498bf..5bec508 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4669,6 +4669,8 @@ P:David Brownell M: [EMAIL PROTECTED] L: linux-usb-devel@lists.sourc

[linux-usb-devel] [PATCH] [491/2many] MAINTAINERS - USB CDC ETHERNET DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 3aafacf..8f496de 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4653,6 +4653,8 @@ L:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net S: Main

[linux-usb-devel] [PATCH] [490/2many] MAINTAINERS - USB BLOCK DRIVER (UB ub)

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 228b49f..3aafacf 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4644,6 +4644,7 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [489/2many] MAINTAINERS - USB ACM DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 51e9dec..228b49f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4635,6 +4635,8 @@ M:[EMAIL PROTECTED] L: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [194/2many] MAINTAINERS - FREESCALE HIGHSPEED USB DEVICE DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 2ef0ec4..944316a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1868,6 +1868,7 @@ M:[EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net L: [EMA

[linux-usb-devel] [PATCH] [126/2many] MAINTAINERS - CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index 8b28143..7f16b33 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1229,6 +1229,7 @@ P:Lennert Buytenhek M: [EMAIL PROTECTED] L: linux-usb-devel@lists.so

[linux-usb-devel] [PATCH] [36/2many] MAINTAINERS - ALCATEL SPEEDTOUCH USB DRIVER

2007-08-12 Thread joe
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <[EMAIL PROTECTED]> diff --git a/MAINTAINERS b/MAINTAINERS index b6827c1..3a586da 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -356,6 +356,8 @@ L: [EMAIL PROTECTED] L: linux-usb-devel@lists.sourceforge.net W: http://www.l

Re: [linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-12 Thread Alain Degreffe
By the way, What are the condition to see this driver in the main kernel tree ? Alain -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de [EMAIL PROTECTED] Envoyé : dimanche 12 août 2007 11:02 À : linux-usb-devel@lists.sourceforge.net Objet : [linu

[linux-usb-devel] [PATCH] iuu_phoenix - new release v0.4 - call for review/comments

2007-08-12 Thread eczema
In this release, the driver use the interrupt context. So no more latency problem. I still kfree the buffers provided by the usb-serial framework. All comments/remarks are welcome This driver seems very stable ( tested with 5 readers at the same time ) Alain code rewritten in interrupt mode Sig

Re: [linux-usb-devel] [patch 2/8] NIKON D50 is an unusual device

2007-08-11 Thread Alan Stern
On Sat, 11 Aug 2007, [EMAIL PROTECTED] wrote: > On my system(2.6.22) I don't have > > @@ -327,6 +327,13 @@ UNUSUAL_DEV( 0x04b0, 0x0409, 0x0100, 0x > > US_SC_DEVICE, US_PR_DEVICE, NULL, > > US_FL_FIX_CAPACITY), > > 2 Alan Stern: sorry for duplication - forgot to add 'c

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-11 Thread David Brownell
On Saturday 11 August 2007, Alan Stern wrote: > On Fri, 10 Aug 2007, David Brownell wrote: > > > > The code in ohci-hcd isn't very sophisticated about > > > checking for interference from the firmware.  Maybe because there are > > > so many different implementations of OHCI floating around, it'

Re: [linux-usb-devel] [patch 2/8] NIKON D50 is an unusual device

2007-08-11 Thread [EMAIL PROTECTED]
On my system(2.6.22) I don't have > @@ -327,6 +327,13 @@ UNUSUAL_DEV( 0x04b0, 0x0409, 0x0100, 0x > US_SC_DEVICE, US_PR_DEVICE, NULL, > US_FL_FIX_CAPACITY), 2 Alan Stern: sorry for duplication - forgot to add 'cc'. Best regards, Dima. -

Re: [linux-usb-devel] [PATCH] USB: SisUSB2VGA: Lindent drivers/usb/misc/sisusbvga/sisusb_struct.h

2007-08-11 Thread Felipe Balbi
Hi, On 8/10/07, David Brownell <[EMAIL PROTECTED]> wrote: > On Friday 10 August 2007, Felipe Balbi wrote: > > >Better indentation > > I don't think so. This whole patch seems to make one > type of change: > > > > -unsigned charSt_ModeID; > > -unsigned shortSt_ModeFlag; > > -unsigned charSt_StTabl

Re: [linux-usb-devel] [patch 2/8] NIKON D50 is an unusual device

2007-08-11 Thread Alan Stern
On Fri, 10 Aug 2007 [EMAIL PROTECTED] wrote: > From: Milinevsky Dmitry <[EMAIL PROTECTED]> > > This short patch allows NIKON D50 to be mounted as UMS[unusual device] > on Linux niam 2.6.22-rc7-cfs-v18 #2 PREEMPT Tue Jul 3 22:35:53 EEST > 2007 i686 Intel(R) Celeron(R) M processor 1.50GHz GenuineIn

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-11 Thread Alan Stern
On Fri, 10 Aug 2007, David Brownell wrote: > > The code in ohci-hcd isn't very sophisticated about > > checking for interference from the firmware.  Maybe because there are > > so many different implementations of OHCI floating around, it's hard > > to know what approach will work on all of th

Re: [linux-usb-devel] [PATCH] USB: SisUSB2VGA: Lindent drivers/usb/misc/sisusbvga/sisusb_struct.h

2007-08-10 Thread David Brownell
On Friday 10 August 2007, Felipe Balbi wrote: >Better indentation I don't think so. This whole patch seems to make one type of change: > -   unsigned char   St_ModeID; > -   unsigned short  St_ModeFlag; > -   unsigned char   St_StTableIndex; > -   unsigned char   St_CRT2CRTC; >

Re: [linux-usb-devel] [patch 6/8] usb: enable hcd support on SH unconditionally.

2007-08-10 Thread David Brownell
On Friday 10 August 2007, [EMAIL PROTECTED] wrote: > Previous boards were likely seeing USB_ARCH_HAS_HCD selected by way of > PCMCIA or PCI, though none of those are required for hcd support on SH. > Enable support unconditionally. In fact, maybe that ARCH_HAS_HCD switch should vanish.

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-10 Thread David Brownell
On Friday 10 August 2007, Alan Stern wrote: > > When the OLPC comes up from suspend, a small bit of Open Firmware code > > gets run, this writes 1 to HcCommandStatus, resetting the OHCI chip into > > Suspend mode, then writes into HcRhDescriptorB and HcRhPortStatus*, > > bringing up the power to th

[linux-usb-devel] [patch 6/8] usb: enable hcd support on SH unconditionally.

2007-08-10 Thread akpm
From: Paul Mundt <[EMAIL PROTECTED]> Previous boards were likely seeing USB_ARCH_HAS_HCD selected by way of PCMCIA or PCI, though none of those are required for hcd support on SH. Enable support unconditionally. Signed-off-by: Paul Mundt <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Al

[linux-usb-devel] [patch 7/8] usb: r8a66597-hcd: Clean up error path.

2007-08-10 Thread akpm
From: Paul Mundt <[EMAIL PROTECTED]> Currently when registration fails we're left with a stray reference to release_mem_region(), this leads to the following case: r8a66597_hcd r8a66597_hcd: irq 13, io base 0x1804 drivers/usb/host/r8a66597-hcd.c: register access fail. r8a66597_hcd

[linux-usb-devel] [patch 8/8] usb: remove redundant memset from amd5536udc

2007-08-10 Thread akpm
From: Mariusz Kozlowski <[EMAIL PROTECTED]> Remove redundant memset() call from udc_pci_probe(). No functional change. Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> --- drivers/usb/gadget/amd5536udc.c |

[linux-usb-devel] [patch 4/8] mct_u232-convert-to-proper-speed-handling-api-fix

2007-08-10 Thread akpm
From: Andrew Morton <[EMAIL PROTECTED]> Make Pete happy Cc: Alan Cox <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Cc: Pete Zaitcev <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> --- drivers/usb/serial/mct_u232.c | 28 ++-- 1 files changed,

[linux-usb-devel] [patch 5/8] drivers/usb/misc/ftdi-elan.c: kmalloc + memset conversion to kzalloc

2007-08-10 Thread akpm
From: Mariusz Kozlowski <[EMAIL PROTECTED]> drivers/usb/misc/ftdi-elan.c | 121253 -> 121196 (-57 bytes) drivers/usb/misc/ftdi-elan.o | 209425 -> 209265 (-160 bytes) Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> --- drivers/usb/misc/ftdi-

[linux-usb-devel] [patch 3/8] kl5kusb105: witch to new speed API

2007-08-10 Thread akpm
From: Alan Cox <[EMAIL PROTECTED]> Signed-off-by: Alan Cox <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> --- drivers/usb/serial/kl5kusb105.c | 28 ++-- 1 files changed, 18 insertions(+), 10 deletions(-) diff -puN d

[linux-usb-devel] [patch 1/8] usb: typo in usb R8A66597 HCD config

2007-08-10 Thread akpm
From: M4rkusXXL <[EMAIL PROTECTED]> Cc: Greg KH <[EMAIL PROTECTED]> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]> --- drivers/usb/host/Kconfig |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/usb/host/Kconfig~usb-typo-in-usb-r8a66597-hcd-config drivers/usb/host/Kc

[linux-usb-devel] [patch 2/8] NIKON D50 is an unusual device

2007-08-10 Thread akpm
From: Milinevsky Dmitry <[EMAIL PROTECTED]> This short patch allows NIKON D50 to be mounted as UMS[unusual device] on Linux niam 2.6.22-rc7-cfs-v18 #2 PREEMPT Tue Jul 3 22:35:53 EEST 2007 i686 Intel(R) Celeron(R) M processor 1.50GHz GenuineIntel GNU/Linux, some previous kernels... lsusb -v Bus 00

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-10 Thread Alan Stern
On Fri, 10 Aug 2007, Zephaniah E. Hull wrote: > > After you get up :-), check udev->state at the end of > > usb_suspend_device(). It should be USB_STATE_SUSPENDED, and nothing > > should change it until usb_resume_device() runs. > > > > Are you maybe seeing ohci_rh_resume() get called twice in

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-10 Thread Zephaniah E. Hull
On Thu, Aug 09, 2007 at 02:56:08PM -0400, Alan Stern wrote: > On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > > > Urgh, I definitely need some sleep, yes, it's a &&. > > > Which, from the debugging statements from previous failed runs, we have > > something odder. > > > > reset_resume == 0, udev-

[linux-usb-devel] [PATCH] USB: SisUSB2VGA: Lindent drivers/usb/misc/sisusbvga/sisusb_struct.h

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> Better indentation Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb_struct.h | 142 +--- 1 files changed, 67 insertions(+), 75 deletions(-) diff --git a/drivers/usb/misc/sisusbvga/sisusb_struct.

[linux-usb-devel] patch usb-remove-debug-definition-from-dummy_hcd.patch added to gregkh-2.6 tree

2007-08-10 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: USB: remove DEBUG definition from dummy_hcd to my gregkh-2.6 tree. Its filename is usb-remove-debug-definition-from-dummy_hcd.patch This tree can be found at http://www.kernel.org/pub/linux/kernel/peo

[linux-usb-devel] patch usb-make-hcds-responsible-for-managing-endpoint-queues.patch added to gregkh-2.6 tree

2007-08-10 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: USB: make HCDs responsible for managing endpoint queues to my gregkh-2.6 tree. Its filename is usb-make-hcds-responsible-for-managing-endpoint-queues.patch This tree can be found at http://www.kernel.

[linux-usb-devel] patch usb-don-t-touch-sysfs-stuff-when-altsetting-is-unchanged.patch added to gregkh-2.6 tree

2007-08-10 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: USB: don't touch sysfs stuff when altsetting is unchanged to my gregkh-2.6 tree. Its filename is usb-don-t-touch-sysfs-stuff-when-altsetting-is-unchanged.patch This tree can be found at http://www.ker

[linux-usb-devel] patch usb-cleanups-for-g_file_storage.patch added to gregkh-2.6 tree

2007-08-10 Thread gregkh
This is a note to let you know that I've just added the patch titled Subject: USB: cleanups for g_file_storage to my gregkh-2.6 tree. Its filename is usb-cleanups-for-g_file_storage.patch This tree can be found at http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/

Re: [linux-usb-devel] [PATCH] USB: make HCDs responsible for managing endpoint queues

2007-08-10 Thread Alan Stern
On Fri, 10 Aug 2007, Yoshihiro Shimoda wrote: > Hi, Alan > > > Please test the changes to your respective drivers. I don't have the > > necessary hardware. > > I applied this patch. I tested USB testing driver and some usb device > and I confirmed it is working. Good. Thank you for testing.

Re: [linux-usb-devel] [PATCH 0/9] SisUSB2VGA Cleanups

2007-08-10 Thread Felipe Balbi
Hi, On 8/10/07, Felipe Balbi <[EMAIL PROTECTED]> wrote: > The following patch series implements a series of cleanups in the sisusbvga > driver. > > Still some stuff to do, but at least we can have better readability on the > code. > > If anyone has any comments, please do. > > TODO: > * R

[linux-usb-devel] [PATCH 8/9] USB: SisUSB2VGA: Lindent drivers/usb/misc/sisusbvga/sisusb_init.c

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> Better indentation Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb_init.c | 262 +++--- 1 files changed, 133 insertions(+), 129 deletions(-) diff --git a/drivers/usb/misc/sisusbvga/sisusb_init.

[linux-usb-devel] [PATCH 7/9] USB: SisUSB2VGA: Lindent drivers/usb/misc/sisusbvga/sisusb_con.c

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> Better indentation Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb_con.c | 493 +++ 1 files changed, 231 insertions(+), 262 deletions(-) diff --git a/drivers/usb/misc/sisusbvga/sisusb_con.c

[linux-usb-devel] [PATCH 6/9] USB: SisUSB2VGA: Lindent drivers/usb/misc/sisusbvga/sisusb.h

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> Better indentation Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb.h | 118 +-- 1 files changed, 58 insertions(+), 60 deletions(-) diff --git a/drivers/usb/misc/sisusbvga/sisusb.h b/dr

[linux-usb-devel] [PATCH 3/9] USB: SisUSB2VGA: Remove if 0'ed code

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> Unused code should be removed. We don't need to increase the size of the file with dead code inside if 0 statements. Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb.c | 57 --- drivers/usb/misc/si

[linux-usb-devel] [PATCH 4/9] USB: SisUSB2VGA: Mis-spelled word

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> Trivial fix Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/misc/sisusbvga/sisusb.h b/drivers/usb/misc/sisusbvga/sisusb.h index dc

[linux-usb-devel] [PATCH 2/9] USB: SisUSB2VGA: Convert printk to dev_* macros

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> This patch convert printk entries to dev_* macros, this provide better debugging and better readability to the code. Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb.c | 111 +-- drivers/

[linux-usb-devel] [PATCH 1/9] USB: SisUSB2VGA: Whitespace Cleanups

2007-08-10 Thread Felipe Balbi
From: Felipe Balbi <[EMAIL PROTECTED]> This patches clean some trailing whitespaces in sisusb2vga driver. Signed-off-by: Felipe Balbi <[EMAIL PROTECTED]> --- drivers/usb/misc/sisusbvga/sisusb.c| 26 +- drivers/usb/misc/sisusbvga/sisusb.h|6 +++--- dr

[linux-usb-devel] [PATCH 0/9] SisUSB2VGA Cleanups

2007-08-10 Thread Felipe Balbi
The following patch series implements a series of cleanups in the sisusbvga driver. Still some stuff to do, but at least we can have better readability on the code. If anyone has any comments, please do. TODO: * Remove unnecessary cleanups * Lots of ifdefs * Remove 2 warn

Re: [linux-usb-devel] [PATCH] USB: make HCDs responsible for managing endpoint queues

2007-08-10 Thread Yoshihiro Shimoda
Hi, Alan > Please test the changes to your respective drivers. I don't have the > necessary hardware. I applied this patch. I tested USB testing driver and some usb device and I confirmed it is working. Thanks, Yoshihiro Shimoda --

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-09 Thread Alan Stern
On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > Urgh, I definitely need some sleep, yes, it's a &&. > Which, from the debugging statements from previous failed runs, we have > something odder. > > reset_resume == 0, udev->state == USB_STATE_CONFIGURED. > > This is an even more bizarre state then

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-09 Thread Zephaniah E. Hull
On Thu, Aug 09, 2007 at 01:00:09PM -0400, Alan Stern wrote: > On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > > > I'll try to keep this making sense, but I'm going to have to reply to > > things slightly out of order. > > Thanks for the detailed reply. > > > On Thu, Aug 09, 2007 at 11:27:02AM -04

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-09 Thread Alan Stern
On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > I'll try to keep this making sense, but I'm going to have to reply to > things slightly out of order. Thanks for the detailed reply. > On Thu, Aug 09, 2007 at 11:27:02AM -0400, Alan Stern wrote: > > On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > >

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-09 Thread Alan Stern
On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > OHCI isn't coming back on the OLPC after resume. > > After a bit of testing, the problem seems to have come down to two points. > > The first is that ohci_pci_resume is not forcing the root hub to be resumed > properly, that's a fairly trivial and o

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-09 Thread Zephaniah E. Hull
> > You mean ohci->regs->control doesn't contain OHCI_USB_RESET in the > > appropriate bits? What does it contain? And why? > > ohci->hc_control & OHCI_CTRL_HCFS == OHCI_USB_SUSPEND, and I honestly > don't have the foggiest clue how or why it has that after coming back > from the chip being pow

Re: [linux-usb-devel] [PATCH] OHCI suspend/resume issue.

2007-08-09 Thread Zephaniah E. Hull
I'll try to keep this making sense, but I'm going to have to reply to things slightly out of order. On Thu, Aug 09, 2007 at 11:27:02AM -0400, Alan Stern wrote: > On Thu, 9 Aug 2007, Zephaniah E. Hull wrote: > > > OHCI isn't coming back on the OLPC after resume. > > > > After a bit of testing, th

  1   2   3   4   5   6   7   8   9   10   >