[linux-usb-devel] MD data

2007-07-06 Thread Jim T Spivak
, Jim Spivak Sales Associate 206-339-6160 [EMAIL PROTECTED] BTW: If you did not S request this email and wish to be de-listed from the master list please reply with "delist" in the subject. - This SF.ne

Re: [linux-usb-devel] [linux-pm] [2/6] 2.6.21-rc2: known regressions

2007-03-20 Thread Jim Gettys
ot;interactive" processes that are being cooperative. - Jim -- Jim Gettys One Laptop Per Child - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance t

Re: [linux-usb-devel] [linux-pm] [2/6] 2.6.21-rc2: known regressions

2007-03-19 Thread Jim Gettys
n 1984 or thereabouts. Of course, in 1996, XFree86 would have ignored any such interfaces, in its insane quest for operating system independent user space drivers requiring no standard kernel interfaces (it is the second part of this where the true insanity lay).

Re: [linux-usb-devel] [PATCH] usb-serial regression fix

2007-03-13 Thread Jim Radford
On Tue, Mar 13, 2007 at 09:55:41AM -0400, Mark Lord wrote: > Jim Radford wrote: > >On Mon, Mar 12, 2007 at 09:55:14PM -0400, Mark Lord wrote: > > > >>So where does the memory get freed -- the structure pointed at > >>by the serial->port[i] thingie ? It's

Re: [linux-usb-devel] [PATCH] usb-serial regression fix

2007-03-13 Thread Jim Radford
On Mon, Mar 12, 2007 at 09:55:14PM -0400, Mark Lord wrote: > Jim Radford wrote: > >On Mon, Mar 12, 2007 at 05:18:19PM -0700, Greg KH wrote: > >>On Mon, Mar 12, 2007 at 03:59:22PM -0700, Jim Radford wrote: > >>>On Mon, Mar 12, 2007 at 03:42:35PM -0700, Jim Radford wro

Re: [linux-usb-devel] [PATCH] usb-serial regression fix

2007-03-12 Thread Jim Radford
On Mon, Mar 12, 2007 at 05:18:19PM -0700, Greg KH wrote: > On Mon, Mar 12, 2007 at 03:59:22PM -0700, Jim Radford wrote: > > On Mon, Mar 12, 2007 at 03:42:35PM -0700, Jim Radford wrote: > > > On Mon, Mar 12, 2007 at 01:33:31PM -0700, Greg KH wrote: > > > > On Mon, Ma

[linux-usb-devel] [PATCH] usb-serial regression fix

2007-03-12 Thread Jim Radford
On Mon, Mar 12, 2007 at 03:42:35PM -0700, Jim Radford wrote: > On Mon, Mar 12, 2007 at 01:33:31PM -0700, Greg KH wrote: > > On Mon, Mar 12, 2007 at 04:22:22PM -0400, Mark Lord wrote: > > > Oliver Neukum wrote: > > > >>Mark Lord wrote: > > > >>>O

Re: [linux-usb-devel] [PATCH] usb-serial regression (Oops) in 2.6.21-rc*

2007-03-12 Thread Jim Radford
Works. > > This patch fixes the Oops that otherwise occurs whenever > > a USB serial adapter is unplugged from a system, as well > > the Oops seen when one is in use before resume (to RAM). > Argh, no, this change was done to help the ftdi drivers out. > Look at changes

Re: [linux-usb-devel] 2.6.21-rc3-mm2: oops in pl2303_shutdown

2007-03-08 Thread Jim Radford
On Thu, Mar 08, 2007 at 08:34:23PM -0800, Jim Radford wrote: > I get the following oopses when unplugging my Prolific PL2303 serial > adaptor. Sometimes I get one, sometimes the other. I think I've > seen something similar with the ftdi_sio driver as well, so I don't >

[linux-usb-devel] 2.6.21-rc3-mm2: oops in pl2303_shutdown

2007-03-08 Thread Jim Radford
I get the following oopses when unplugging my Prolific PL2303 serial adaptor. Sometimes I get one, sometimes the other. I think I've seen something similar with the ftdi_sio driver as well, so I don't think it started with 2.6.21-rc3-mm2. -Jim pl2303 ttyUSB0: pl2303 converter now di

[linux-usb-devel] [PATCH] ftdi_sio: use port_probe / port_remove thereby fixing access to the latency_timer

2007-02-28 Thread Jim Radford
time and to the serial port device itself, instead of to the unadorned usb device, avoiding a NULL dereference. Signed-Off: Jim Radford <[EMAIL PROTECTED]> diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 4695952..abc4355 100644 --- a/drivers/usb/serial/ftdi

[linux-usb-devel] [PATCH] usb-serial: fix shutdown / device_unregister order

2007-02-28 Thread Jim Radford
On Thu, Feb 22, 2007 at 04:06:55PM -0800, Greg KH wrote: > On Thu, Feb 22, 2007 at 01:59:58PM -0800, Jim Radford wrote: > > One problem with this is that ->shutdown(), which cleans up my > > pointer, is called before device_unregister(). So now we have: > > ->attac

Re: [linux-usb-devel] [PATCH] ftdi_sio: fix access to the latency_timer and other attributes

2007-02-22 Thread Jim Radford
On Thu, Feb 22, 2007 at 01:29:19PM -0800, Jim Radford wrote: > On Thu, Feb 22, 2007 at 11:40:33AM -0800, Greg KH wrote: > > On Wed, Feb 21, 2007 at 03:28:51PM -0800, Jim Radford wrote: > > > Allow usb-serial driver's attach callback to create sysfs attributes, > >

[linux-usb-devel] [PATCH] ftdi_sio: fix access to the latency_timer and other attributes

2007-02-22 Thread Jim Radford
On Thu, Feb 22, 2007 at 11:40:33AM -0800, Greg KH wrote: > On Wed, Feb 21, 2007 at 03:28:51PM -0800, Jim Radford wrote: > > Allow usb-serial driver's attach callback to create sysfs attributes, > > by calling device_register, before calling ->attach(). > No, if you want

[linux-usb-devel] [PATCH 2/3] ftdi_sio: move the sysfs files to the usb_serial_port

2007-02-21 Thread Jim Radford
Move the sys files like the latency_timer to the more natural usb_serial_port instead of the usb_device. Signed-Off: Jim Radford <[EMAIL PROTECTED]> diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 4695952..179cc53 100644 --- a/drivers/usb/serial/ftdi_sio.c

[linux-usb-devel] [PATCH 2/3] ftdi_sio: move the sysfs files to the usb_serial_port

2007-02-21 Thread Jim Radford
Move the sys files like the latency_timer to the more natural usb_serial_port instead of the usb_device. Signed-Off: Jim Radford <[EMAIL PROTECTED]> diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 4695952..179cc53 100644 --- a/drivers/usb/serial/ftdi_sio.c

[linux-usb-devel] [PATCH 3/3] ftdi_sio: fix a NULL deference in the latency_timer show/store callbacks

2007-02-21 Thread Jim Radford
Fix a NULL deference in the latency_timer show/store callbacks. Signed-Off: Jim Radford <[EMAIL PROTECTED]> diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c @@ -1023,12 +1023,10 @@ static s

[linux-usb-devel] [PATCH 1/3] usb-serial: device_register before calling attach

2007-02-21 Thread Jim Radford
Allow usb-serial driver's attach callback to create sysfs attributes, by calling device_register, before calling ->attach(). Signed-Off: Jim Radford <[EMAIL PROTECTED]> diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c --- a/drivers/usb/serial/usb-

[linux-usb-devel] [PATCH 0/3] ftdi_sio: fix oops on access to the latency_timer

2007-02-21 Thread Jim Radford
he ->attach() in usb-serial. I'm not sure what the implications of that are, but it works for me. After that I could fix up the show/store callbacks. These patches are against Linus' latest git tree (~ 2.6.21-rc1). -Jim

[linux-usb-devel] Error of "Couldn't find both bulk-in and bulk-out endpoints"

2006-11-16 Thread Jim
ffer = kmalloc (buffer_size, GFP_KERNEL); if (!dev->bulk_in_buffer) { err("Couldn't allocate bulk_in_buffer"); goto error; } } Thank you. Jim - Take Surveys.

[linux-usb-devel] usb register

2006-11-01 Thread Jim
was made for a major number = 180 (mknode /dev/skel0 c 180 0), but to open /dev/skel0 was always an error of "No Such Device". Why the usb_skel_init was running, but the device could not be opened? How can I debug this probl

Re: [linux-usb-devel] Fwd: USB device not getting detected.

2006-09-26 Thread Jim Cromie
pankaj chauhan wrote: > dave, > > Thanks alot for useful information. > > Is there any way in which i can verify that is it the > fault of device (i.e device is trying to draw more > current) or my host controller is faulty (as you > mentioned that some Host controllers behave in such > way)? > >

Re: [linux-usb-devel] [linux-pm] [PATCH] get USB suspend to work again on 2.6.17-mm1

2006-06-24 Thread Jim Gettys
e the main machine is STR. We intend to leave the Marvell chip on (it can forward packets in the mesh network, and/or wake up the CPU if there are inbound packets for the machine that matter), and turn off the USB interface it is attached to. Regards,

RE: [linux-usb-devel] USB Memory Modules

2005-11-03 Thread jim
Randy, I did used to work, but now I understand that I might be better off learning how to get 2.6 because of its enhanced support for USB. No? Of course, I don't know how yet. Jim Jim Trek, Secretary Science Holdings, Inc. http://scienceholdings.com [EMAIL PROTECTED] (585) 637

RE: [linux-usb-devel] USB Memory Modules

2005-11-03 Thread jim
/sda/mnt/usbvfatnoauto,sync 0 0 Jim Trek, Secretary Science Holdings, Inc. http://scienceholdings.com [EMAIL PROTECTED] (585) 637-0256 > Original Message > Subject: Re: [linux-usb-devel] USB Memory Modules > From: "Randy.D

[linux-usb-devel] USB Memory Modules

2005-11-03 Thread jim
o find out whether I have a 2.2 or 2.4 or 2.6 kernel. I know how to use apt-get. What would you suggest? Thank you for your help. Jim Jim Trek, Secretary Science Holdings, Inc. http://scienceholdings.com [EMAIL PROTECTED] (585) 637-0256 --- SF

[linux-usb-devel] USB raw I/O via /dev/usb/ttyUSBxx

2005-09-20 Thread Jim Jensen
ow-level API) documentation on this subject? Better yet, to some sample application code? Regards, Jim Jensen --- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. Download it for free -

RE: [linux-usb-devel] Logical to Physical Address Mapping

2004-11-29 Thread BLACKSON Jim
nless you know the vendor-specific commands, if any, to read physical blocks. :-) Best regards, jim. Jim Blackson Y-E Data, Inc. maker of 7-in-1 Digital Media memory card Reader/Writer http://www.yedata.com/ --- SF email is sponsored by

RE: [linux-usb-devel] Help with USB sniffing

2004-03-09 Thread BLACKSON Jim
the "derivated one" is: http://benoit.papillault.free.fr/usbsnoop/index.php Hope this helps, jim. --- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of Ge

[linux-usb-devel] keyspan oops on unplug/removal

2004-02-25 Thread Jim Radford
When I unplug my four port keyspan USB serial converter or remove the keyspan module I get a consistent oops. I'm running linux-2.6.3. Thanks for any help with this, -Jim Unable to handle kernel NULL pointer dereference at virtual address printing eip: e0e084b1 *pde =

RE: [linux-usb-devel] Fuji Film FinePix 1300 - 2.6.X report

2004-02-16 Thread BLACKSON Jim
x kernel: usb-storage: -- auto-sense failure Looks to me like another SubClass=x05 8070i device sending a SubClass=x04 UFI-style interrupt. :-( See CBI spec Section 3.4.3. Hope this helps, jim. --- SF.Net is sponsored by: Speed Start Your Linux A

[linux-usb-devel] WINNING NOTIFICATION

2004-01-18 Thread Jim Van Gill
possible. Congratulations once more from our members of staff and thank you for being part of our promotional program. Sincerely, Jim VAN Gill Lotto Co-ordinator N.B: Anybody under the age of 18 is automatically disqualified and breach of confidentaility on the part of the winners will result to

RE: [linux-usb-devel] [usb-storage] usb-key without partitions and 2.6.0-test3

2003-09-01 Thread BLACKSON Jim
a Linux version, but I have never tried it myself. HTH, jim. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf ___ [EMAIL PROTECTED] To unsubscribe, use

RE: [linux-usb-devel] Sony Clie NZ90 - Redhat 8 - PATCHES for Memory Stick usb-storage...

2003-08-29 Thread BLACKSON Jim
rc.theaimsgroup.com/?l=linux-usb-users&m=105960747508334&w=4 http://marc.theaimsgroup.com/?l=linux-usb-users&m=105966987700517&w=4 Hope this helps, jim. --- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf

RE: [linux-usb-devel] new usb product ...

2003-03-02 Thread BLACKSON Jim
I'm beginning to warm to this USB electric lap blanket. :-) http://www.direct.santec.co.jp/products/supply/ohizamoto/ohizamoto.asp Makes sense for those without central heating. #include Best regards, jim. --- This sf.net email is spon

RE: [linux-usb-devel] new usb product ...

2003-03-02 Thread BLACKSON Jim
device is a coffee _can_ heat retainer. It will accommodate the 250 ml (8 oz) or 350 ml (12 oz) cans of coffee or tea drink sold by vending machines in Japan. The device will delay the cooling of a previously heated can of drink (30 - 60 minutes); it cannot heat a cold can, the w

RE: [linux-usb-devel] lsusb (usbutils-0.11) Lang ID is zero

2003-01-23 Thread BLACKSON Jim
Hi Tom, Here is a patch to lsusb.c (usbutils-0.11) to include the language ID in a get string request, rather than using zero. Hope this helps, jim. > <> --- usbutils-0.11-backup/lsusb.cTue Aug 6 15:35:21 2002 +++ usbutils-0.11-new/lsusb.c Thu Jan 23 15:06:49 2003

[linux-usb-devel] lsusb (usbutils-0.11) Lang ID is zero

2003-01-22 Thread BLACKSON Jim
also section 9.6.7. Of course, my device is checking the LANGID field and stalls the get string request because of an invalid LANGID. This produces timeout messages when you run "lsusb -v", for example. Best regards, jim. Jim Blackson Y-E

RE: [usb-storage] Re: [linux-usb-devel] Re: PATCH: usb-storage: make internal structs more consistent

2002-12-12 Thread BLACKSON Jim
ket. Makes for a nice marker on the wire. Then every phase of BBB: command, data, status terminates with a short packet. Might be able to eliminate some stalls that way. :-) Best regards, jimb. Jim Blackson --- This sf.net email is sponsor

Re: [linux-usb-devel] Howto write a USB driver ?

2002-06-06 Thread Jim Richardson
On Mon, Jun 03, 2002 at 10:35:58PM -0700, Mark McClelland wrote: > Jim Richardson wrote: > > >On Sat, Jun 01, 2002 at 11:23:47AM -0700, Dmitri wrote: > > > > > >>On Wed, 2002-05-29 at 20:58, an unknown sender wrote: > >> > >> > >&g

Re: [linux-usb-devel] Howto write a USB driver ?

2002-06-02 Thread Jim Richardson
n this way. Look in > linux/drivers/usb/ for details. Then you don't need to deal with V4L > interface. Thanks a lot, I will do this. Like I said,I am basically clueless, with a desire to do and learn. (unfortunately, it's rarely in that order...) -- Jim Richardson Anarchis

[linux-usb-devel] [PATCH] New Pegasus Adaptor (Hawking UF100)

2002-01-27 Thread Jim Radford
I'm not sure about the DEFAULT_GPIO_RESET bit. Most if the others devices had it. It works for me. -Jim --- linux-2.4.17/drivers/usb/pegasus.h Sun Jan 27 11:34:07 2002 +++ linux/drivers/usb/pegasus.h Mon Jan 21 20:10:05 2002 @@ -145,6 +145,7 @@ #defineVENDOR_SMARTBRIDGES 0

Re: [linux-usb-devel] Cyrix USB

2001-07-06 Thread Jim Buzbee
egasus -84 errors in the syslog though. I've had some reports that interrupts are disabled for a period of time during the recovery from this error. Does anyone know if this is correct? Jim Buzbee Echostar Technologies ___ [EMAIL PROTECTED] To unsubscribe, use the last form field at: http://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Re: [linux-usb-devel] CDRRW only seen as CDROM

2001-04-18 Thread Jim Buzbee
no CD-Recorder. I had the same problem until I upgraded to a bleeding-edge version of cdrecord : version, 1.10a05 Jim > > This is a 2.4.3-ac2 kernel on an AMD-750 based system. > I have the black list disabled for the AMD-756 controller. > using hotplug-2001_02_14-4 built locally