Re: [linux-usb-devel] This patch lets Sony DSC-V3 to work under linux-2.4.31

2005-06-05 Thread Phil Dibowitz
Mariusz Muszynski wrote: > diff -urNp linux-2.4.31/drivers/usb/storage/unusual_devs.h > linux-2.4.31-bzyk/drivers/usb/storage/unusual_devs.h > --- linux-2.4.31/drivers/usb/storage/unusual_devs.h Wed Nov 17 12:54:21 > 2004 > +++ linux-2.4.31-bzyk/drivers/usb/storage/unusual_devs.hWed J

Re: [linux-usb-devel] Re: Patch for Prolific PL-3507

2005-06-05 Thread Phil Dibowitz
Alan Stern wrote: > On Tue, 31 May 2005, Phil Dibowitz wrote: > > >>Oh, I CC'd the list but didn't include all the previous emails. The >>summary (though it can probably be pieced together from the above, I >>figure I should state it) is that the latest version of the firmware for >>the PL-3507 f

Re: [linux-usb-devel] Possible bug in usb hc_crisv10.c = kernel crash

2005-06-05 Thread David Brownell
On Sunday 05 June 2005 1:55 pm, Mark Richards wrote: > I have been bitten by a possible bug in hc_crisv10.c, Make that "certain". Oopsing is not allowed, even if you manage to trick Linux into showing a nice Blue Screen Of Death. And on an embedded board like that, a BSOD would be some trick!

Re: [linux-usb-devel] Question about usb_unlink_urb

2005-06-05 Thread David Brownell
On Sunday 05 June 2005 7:42 pm, Enzo Chen (陳友士) wrote: > But I still need to know how could we cancel urb request in kernel 2.6.5 :p Use usb_unlink_urb() in async unlink mode (not synchronous!) and you won't even need to change it later. - Dave ---

[linux-usb-devel] Re: Bad description for USB Monitor (USB_MON)

2005-06-05 Thread Pete Zaitcev
On Mon, 23 May 2005 17:53:53 -0700, Jeff Carr <[EMAIL PROTECTED]> wrote: > The text for the USB_MON option is confusing as to what was intended. > (This was from linux-2.6.11-rc4-git7) Is this better? -- Pete --- linux-2.6.12-rc4/drivers/usb/mon/Kconfig2005-05-14 00:02:46.0 -0700

Re: [linux-usb-devel] Question about usb_unlink_urb

2005-06-05 Thread Greg KH
On Mon, Jun 06, 2005 at 10:37:28AM +0800, Enzo Chen (?h) wrote: > > > On Fri, Jun 03, 2005 at 03:24:51PM +0800, Enzo Chen (?h) wrote: > > > > > > If you'd like to check in detail, please feel free to contact me. > > > > Sure, have a pointer to your whole driver? It is released under

RE: [linux-usb-devel] Question about usb_unlink_urb

2005-06-05 Thread 陳友士
Dear Alan, Ya, but in my kernel version (2.6.5.-3), usb_kill_urb() seems not support yet? Maybe we'll replace usb_unlink_urb() by usb_kill_urb() after kerner later the 2.6.9 But I still need to know how could we cancel urb request in kernel 2.6.5 :p Thanks a lot~ Regards, oct -

RE: [linux-usb-devel] Question about usb_unlink_urb

2005-06-05 Thread 陳友士
> On Fri, Jun 03, 2005 at 03:24:51PM +0800, Enzo Chen (?h) wrote: > > > > If you'd like to check in detail, please feel free to contact me. > > Sure, have a pointer to your whole driver? It is released under the GPL, > right? > > For what usb to serial device is this driver being writ

[linux-usb-devel] Re: [Linux-usb-users] usb2->ide enclosure corrupted file system problem

2005-06-05 Thread Alan Stern
On Sun, 5 Jun 2005, Heitzso wrote: > At first we pulled the hub but still had the problem. > Then compiled and ran 2.6.12-rc5 with patches noted > below and the USB2 storage device now seems to be > working. On the other hand, we've only moved about > 35G (3 DV files) so far. I'll post a follow

[linux-usb-devel] Possible bug in usb hc_crisv10.c = kernel crash

2005-06-05 Thread Mark Richards
I have been bitten by a possible bug in hc_crisv10.c, which is in the linux kernel distribution that comes with the Axis Devboard 83+. It's based on the 2.6.11 kernel. (note that it's build under the cris compiler). The ksymoops output is pasted below. I am seeking some guidance as to where I sh

[linux-usb-devel] Re: ati_remote and Qsonic Master Remote 6in1 (pearl)

2005-06-05 Thread Joerg Hoener
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Frank, after also buying the Qsonic Master Remote 6in1 at pearl, searching for a driver the only thing I found was your post. It is btw. exactly the same as your model (same USB identification and labels). So what I did is get it working as fast

Re: [linux-usb-devel] [patch] usblp: 2x up() in usblp_read

2005-06-05 Thread Pete Zaitcev
On Sun, 5 Jun 2005 14:46:16 +0200, Domen Puncer <[EMAIL PROTECTED]> wrote: > --- c/drivers/usb/class/usblp.c 2005-05-25 13:34:54.0 +0200 > +++ a/drivers/usb/class/usblp.c 2005-06-05 14:38:39.0 +0200 > @@ -751,6 +751,7 @@ static ssize_t usblp_read(struct file *f >

[linux-usb-devel] Re: [Linux-usb-users] usb2->ide enclosure corrupted file system problem

2005-06-05 Thread Heitzso
At first we pulled the hub but still had the problem. Then compiled and ran 2.6.12-rc5 with patches noted below and the USB2 storage device now seems to be working. On the other hand, we've only moved about 35G (3 DV files) so far. I'll post a follow up note if things break while running with th

Re: [linux-usb-devel] Re: OHCI driver have problems with USB 2.0 memory devices

2005-06-05 Thread Alan Stern
On Sun, 5 Jun 2005, Dag Nygren wrote: > There is no cable, the stick is connected directly to the connector. > The device works fine with another computer. > > I would like to point out that I am pushing in a 2.0 stick into a 1.1 > controller here and I think an error is acceptable, That's suppo

[linux-usb-devel] [patch] usblp: 2x up() in usblp_read

2005-06-05 Thread Domen Puncer
up(&usblp->sem) was called twice in a row in this code path. Signed-off-by: Domen Puncer <[EMAIL PROTECTED]> --- c/drivers/usb/class/usblp.c 2005-05-25 13:34:54.0 +0200 +++ a/drivers/usb/class/usblp.c 2005-06-05 14:38:39.0 +0200 @@ -751,6 +751,7 @@ static ssize_t usblp_read(struct

Re: [linux-usb-devel] Re: OHCI driver have problems with USB 2.0 memory devices

2005-06-05 Thread Dag Nygren
> On Sat, 4 Jun 2005, Dag Nygren wrote: > > usb-storage: Status code -71; transferred 512/4096 > > usb-storage: -- unknown error > > usb-storage: Bulk data transfer result 0x4 > > usb-storage: -- transport indicates error, resetting > > usb-storage: usb_stor_Bulk_reset called > > usb-storage: usb_

Re: [linux-usb-devel] Re: [parisc-linux] [PATCH] usb/input/hid-core.c extract() brain damage

2005-06-05 Thread Grant Grundler
On Sat, Jun 04, 2005 at 06:59:53PM -0400, Alan Stern wrote: > The point I was driving at is that we currently have separate APIs for > byte swapping and for unaligned access, and it would make a lot of sense > to combine them into a single API. Knowing that the bytes have to be > swapped _and_

Re: [xfree] Re: [linux-usb-devel] Re: Support for Acecad graphic tablets

2005-06-05 Thread stef
Hello, I have tested it. It is still working fine. Regards, Stef --- This SF.Net email is sponsored by: NEC IT Guy Games. How far can you shotput a projector? How fast can you ride your desk chair down the office luge

Re: [linux-usb-devel] Re: [PATCH] Creative WebCam mini driver

2005-06-05 Thread Kiril Jovchev
randy_dunlap wrote: On Sun, 05 Jun 2005 01:52:33 +0300 Kiril Jovchev wrote: > That happens. You aren't the first, but there are files and web pages that warn about these things. Have you read/studied these? Documentation/SubmittingPatches Documentation/CodingStyle http://www.zip.com.au/~ak