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 !
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
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
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
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
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
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
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
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.
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
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
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/
-
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);
>
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
> +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
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
+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
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
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
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
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.
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
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
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
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
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
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
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:
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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'
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.
-
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
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
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
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;
>
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.
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
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
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
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 |
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,
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-
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
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
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
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
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-
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.
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
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.
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
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/
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.
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
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.
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
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
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
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
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/
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
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
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
--
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
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
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:
> >
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
> > 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
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 - 100 of 12134 matches
Mail list logo