Re: [linux-usb-devel] Carry Inc. UISA2 device - Any takers?

2001-11-12 Thread Luc Saillard
On Sat, Nov 10, 2001 at 10:46:26PM -0800, Daniel Ceregatti wrote: Hi, I have this device: http://www.qbik.ch/usb/devices/showdv.php3?id=506 I was in communication with Sancho Dauskardt regarding this device and I was actually able to get his driver working in 2.4.6 - 2.4.8. I was only

[linux-usb-devel] USB mass storage device

2001-11-12 Thread Astrid Wonner
Hello everyone, I'm a newbie in kernel hacking and USB and I hope, you or your mailing list can help me. I have to write a driver for a USB device, that is recognized as a mass storage device and can be used as such under Windows with the standard built-in driver. In fact, it's an

[linux-usb-devel] [PATCH 1 of 6] USB usb-serial documentation update

2001-11-12 Thread Greg KH
Hi, Here's a patch against 2.4.15-pre3 that updates the usb-serial drivers' documentation. thanks, greg k-h diff --minimal -Nru a/Documentation/usb/usb-serial.txt b/Documentation/usb/usb-serial.txt --- a/Documentation/usb/usb-serial.txt Mon Nov 12 09:29:20 2001 +++

[linux-usb-devel] [PATCH 2 of 6] USB usb-skeleton driver bugfix

2001-11-12 Thread Greg KH
Hi, Here's a patch against 2.4.15-pre3 that fixes a potential locking problem in the usb-skeleton driver. Thanks to Pete Zaitcev for the fix. thanks, greg k-h diff --minimal -Nru a/drivers/usb/usb-skeleton.c b/drivers/usb/usb-skeleton.c --- a/drivers/usb/usb-skeleton.cMon Nov 12

[linux-usb-devel] [PATCH 3 of 6] USB ftdi_sio driver update

2001-11-12 Thread Greg KH
Hi, Here's a patch against 2.4.15-pre3 that fixes a oops, and cleans up a number of other things in the USB ftdi_sio usb-serial driver. The patch is by Bill Ryder. thanks, greg k-h diff --minimal -Nru a/Documentation/Configure.help b/Documentation/Configure.help ---

[linux-usb-devel] [PATCH 5 of 6] USB mct_u232 endian bugfix

2001-11-12 Thread Greg KH
Hi, Here's a patch against 2.4.15-pre3 that fixes an endian issue in the mct_u232 driver. This patch is from Wolfgang Grandegger. thanks, greg k-h diff --minimal -Nru a/drivers/usb/serial/mct_u232.c b/drivers/usb/serial/mct_u232.c --- a/drivers/usb/serial/mct_u232.c Mon Nov 12 09:29:21

[linux-usb-devel] [PATCH 4 of 6] USB ir-usb bugfix

2001-11-12 Thread Greg KH
Hi, Here's a patch against 2.4.15-pre3 that fixes a problem that the ir-usb driver had in getting the IrDA configuration information from the device. Thanks to Martin Diehl for the idea and code for this fix. thanks, greg k-h diff --minimal -Nru a/drivers/usb/serial/ir-usb.c

Re: [linux-usb-devel] USB mass storage device

2001-11-12 Thread Matthew Dharm
Sounds like the device isn't returning proper INQUIRY data. I've seen that before. It's uncommon, but apparently works somehow with Windows. My guess is that the Windows driver assumes random-access unless told otherwise. Can you recompile your kernel with usb-storage verbose debugging turned

Re: [linux-usb-devel] [PATCH] LEGO USB Tower driver v0.3

2001-11-12 Thread Thomas Davis
Juergen Stuber wrote: Does anybody have a example code for one-shot interrupt out transfers that's known to work? Strange, I just found myself almost asking the same question, as I am working on the Creative VOIP Blaster USB device, and that thing uses all interrupts for communicatiosn

Re: [linux-usb-devel] [PATCH] LEGO USB Tower driver v0.3

2001-11-12 Thread Adam Goode
The last 2.4.13-ac kernel (2.4.13-ac8) has this interesting line in the changelogs: o Add support for one shot interrupt urbs (Maksim Krasnyanskiy) in usbdevfs Looks like that's what we're after! Someone should try it... Adam On Mon, Nov 12, 2001 at 01:39:01PM

[linux-usb-devel] usb floppy drive

2001-11-12 Thread Joe Pfeiffer
I'm very close to having the USB floppy drive on my Sony Vaio working correctly -- all that's left is getting it to insmod the sd_mod module automatically when I plug in the drive (it is insmod'ing the scsi_mod and usb-storage modules). So, near as I can tell, this means an entry for the drive

Re: [linux-usb-devel] usb floppy drive

2001-11-12 Thread Pete Zaitcev
I never had a problem with Vaio floppy, in Red Hat of course :) The general rule is load usb-storage from the bottom (e.g. hotplug takes care of it as told by modules.usbmap) and load scsi stuff from the top (in other words, it should get autoloaded when you open /dev/sda - check your

[linux-usb-devel] USB host controller on MPC823 FADS board

2001-11-12 Thread IGOR LURI
Hi, I get m8xxhci.c last release form Brad Parker's page http://www.heeltoe.com/usb/ppc http://www.heeltoe.com/usb/ppc http://www.heeltoe.com/usb/ppc http://www.heeltoe.com/usb/ppc and I have modificated to use on the MPC823 FADS board. This drivers has also Roman Weissgaerber some changes.

Re: [linux-usb-devel] usb floppy drive

2001-11-12 Thread Matthew Dharm
Umm... sd_mod should get loaded whenever you make a request for block-major-8. If it's not getting loaded, you need a new modutils. The fact that usb-storage is getting loaded is a good sign that your hotplug setup is completely fine. Matt On Mon, Nov 12, 2001 at 11:04:32PM -0700, Joe