[linux-usb-devel] Warning: message 1Gp9Zr-00065Z-Jm delayed 10 hours

2006-11-28 Thread Mail Delivery System
This message was created automatically by mail delivery software. A message that you sent has not yet been delivered to one or more of its recipients after more than 10 hours on the queue on externalmx-1.sourceforge.net. The message identifier is: 1Gp9Zr-00065Z-Jm The subject of the message i

[linux-usb-devel] Error -71 connecting IDEN phone

2006-11-28 Thread Larry Fenske XX (BO/EUS)
I am attempting to connect a Motorola IDEN phone to a Linux box. Most of the time I get an error -71 in /var/log/messages. Here are six failed attempts: usb 5-1: new full speed USB device using address 2 usb 5-1: device not accepting address 2, error -71 usb 5-1: new full speed USB device using

[linux-usb-devel] ftdi_sio - MachX product ID added

2006-11-28 Thread Jan Capek
Hi, below is a patch for the ftdi_sio driver to include a new device ID for CCS MachX PIC programmer. Thanks for applying, Jan --- linux-2.6.18.3/drivers/usb/serial/ftdi_sio.h.orig 2006-11-19 04:28:22.0 +0100 +++ linux-2.6.18.3/drivers/usb/serial/ftdi_sio.h2006-11-28 22:32:

[linux-usb-devel] rtl8150 support for OQO

2006-11-28 Thread N . E . Whiteford
Hi, I am using the rtl8150 driver included in kernel version 2.6.17 with my OQO however I needed to add the vendor ID for this computer I therefore added this to rtl8150.c. The patch I used to add support for this device follows in case it is useful for anyone else. My apologies if this has alr

Re: [linux-usb-devel] [PATCH]transvibrator disconnect race

2006-11-28 Thread Alan Stern
On Tue, 28 Nov 2006, Oliver Neukum wrote: > Documented core VFS code? The notion is indecent verging on blasphemous ;-) I can just see the flamewars starting up: "There's no kerneldoc for VFS, so why do we have to write documentation for USB?" :-) > > This looks reasonable, subject to the quest

Re: [linux-usb-devel] usb-storage (2.4.26) hangs with error -84 at READ_10 (PNY Attache' 1GB)

2006-11-28 Thread Bill Gatliff
Alan: Alan Stern wrote: >USB error codes are explained in the source file >Documentation/usb/error-codes.txt. 84 is EILSEQ, which indicates an >invalid bit stream was received from the device (bad CRC, invalid >bit-stuffing, etc.). It could be a cable-level hardware problem. > > Ok, thanks

Re: [linux-usb-devel] usb-storage (2.4.26) hangs with error -84 at READ_10 (PNY Attache' 1GB)

2006-11-28 Thread Alan Stern
On Tue, 28 Nov 2006, Bill Gatliff wrote: > Guys: > > > I'm trying to get USB pen drives working on a 2.4.26/PPC-based embedded > system. Unfortunately, at the moment a kernel upgrade to something less > ancient isn't an option. :( > > I can't rule out a hardware problem, but the drive I'm t

[linux-usb-devel] usb-storage (2.4.26) hangs with error -84 at READ_10 (PNY Attache' 1GB)

2006-11-28 Thread Bill Gatliff
Guys: I'm trying to get USB pen drives working on a 2.4.26/PPC-based embedded system. Unfortunately, at the moment a kernel upgrade to something less ancient isn't an option. :( I can't rule out a hardware problem, but the drive I'm testing with will successfully enumerate--- which suggests

Re: [linux-usb-devel] Isochronus transfer

2006-11-28 Thread Alan Stern
On Tue, 28 Nov 2006, xiaoxin liu wrote: > > Did you remember to make a USBDEVFS_REAPURB ioctl call? > > > > > I did't make a USBDEVFS_REAPURB ioctl call. Must I make this call?? Yes. URBs don't complete immediately; it takes time for the device to send data to the computer. USBDEVFS_REAPURB

[linux-usb-devel] [PATCH 2/2] pxa2xx_udc: make driver platform independent

2006-11-28 Thread Milan Svoboda
Replace platform dependent code in drivers/usb/gadget/pxa2xx_udc.c with function calls and create these functions in asm/arch-pxa/udc.h. Patch against linux-2.6.19-rc6 Signed-off-by: Milan Svoboda <[EMAIL PROTECTED]> --- diff -uprN -X orig/Documentation/dontdiff orig/drivers/usb/gadget/pxa2xx_u

[linux-usb-devel] [PATCH 1/2] pxa2xx_udc: make driver platform independent

2006-11-28 Thread Milan Svoboda
Move platform depended code (gpio handling) from drivers/usb/gadget/pxa2xx_udc.h to asm/arch-pxa/udc.h. Patch against linux-2.6.19-rc6 Signed-off-by: Milan Svoboda <[EMAIL PROTECTED]> --- diff -uprN -X orig/Documentation/dontdiff orig/drivers/usb/gadget/pxa2xx_udc.h usb_device_step/drivers/usb

[linux-usb-devel] [PATCH 0/2] pxa2xx_udc: make driver platform independent

2006-11-28 Thread Milan Svoboda
Hi, I'm trying to bring support for ixp4xx to this driver, however I found that in linux-2.6.19-rc6 there is new platfrom (see pxa2xx only) dependent code :-( Following two patches move platform dependent (gpio functions) from drivers/usb/gadget/pxa2xx_udc.h to asm/arch-pxa/udc.h and creates a f

Re: [linux-usb-devel] Isochronus transfer

2006-11-28 Thread Greg KH
On Tue, Nov 28, 2006 at 12:31:58PM +0800, xiaoxin liu wrote: > Alan Stern ??: > > On Tue, 28 Nov 2006, xiaoxin liu wrote: > > > > > >> Hi, Currently I got a philips webcam (type 740), which can be driven by > >> pwc in Linux. > >> > >> Now I want to write my own program to test the isochronu

Re: [linux-usb-devel] USBDEVFS_REAPURB

2006-11-28 Thread Greg KH
On Tue, Nov 28, 2006 at 03:51:05PM +0800, xiaoxin liu wrote: > Hi, everyone > > I have got a stupid question. > > If I only call ioctl(fd, USBDEVFS_SUBMITURB, ...) without following call > ioctl(fd, USBDEVFS_REAPURB, ...), what is the result? Can I receive data ? What happens if you try that? :