[linux-usb-devel] hid-set.c, PSC805

2006-05-11 Thread Don
S16_BE' ) hidset ff000088 1 -Don Mahurin /* hidset * Don Mahurin, 2006 * code from dumpev.c and hid-ups ( Paul Stewart) * * To enable spdif sound in a Philips psc805: * hidset ff86 1 * hidset ff97 1 * To enable raw data stream passthrough (for a52,...) * hidset ff

[linux-usb-devel] report

2005-01-21 Thread Don
###SIIG/Datafab Memory Stick+CF Reader/Writer##Simple Tech/Datafab CF+SM Readert33520 USB Flash Card Controllerunneeded SubClass and Protocol entries##<5>usb-storage: This device (%04x,%04x,%04x S %02x P %02x) has %s in unusual_devs.h Please send a copy of this messag

[linux-usb-devel] usbaudio: no idea what's going on...

2004-08-11 Thread Don Jackson
Is the usb device being detected twice? I'm sending this to the linux-usb-devel list as per instructions in the above dmesg. I do not subscribe to this list, so any reply, please "cc:" me directly. Thanks! Don --- SF.Net e

Re: [linux-usb-devel] Re: [ANNOUNCE] RNDIS Gadget Driver

2004-03-29 Thread don
lass, it seems reasonable for the USB system to provide a driver. To me a file system interface is the most generic and useful. Of course if I want it badly enough, I guess I can write it... -- Don Reid --- This SF.Net email is sponsored

Re: [linux-usb-devel] Re: [ANNOUNCE] RNDIS Gadget Driver

2004-03-27 Thread don
USB Mass Storage. I want to mount the camera or gadget file system and access it from any program, not run a separate app to fetch files like Mass Stor. mounts a memory device. Why create a dedicated app like a camera interface instead of using your favorite image browser on some files? -- Don Reid

Re: [linux-usb-devel] Re: [ANNOUNCE] RNDIS Gadget Driver

2004-03-26 Thread don
" would be really nice too. First as a generic camera interface, second to access a gadget with the PTP interface. (Please embarrass me by saying there already is one, I'll be so happy I won't care :-) ). I have a PTP camera and would certainly be happy to test such a driver. Time to w

Re: [linux-usb-devel] Some ideas to ease usb driver developement.

2004-03-04 Thread don
ch mesages should be quailfied by CONFIG_USB_DEBUG. > Have you tried enabling CONFIG_USB_DEBUG? That helps, but I have seen many places were an error code is returned with no message. I submitted one patch that adds the messages I needed to debug a problem. -- Don Reid ---

[linux-usb-devel] Setting interval in devio

2004-02-20 Thread don
sn't some lower level code do that and relieve all drivers of that task? Do other drivers set interval? How? I have looked around the code a bit and mostly see reading of interval, or setting it to 1. rtl8150 does set it to 100ms. Is this what the descriptor says too?

Re: [linux-usb-devel] USBDEVFS_SUBMITURB error with 2.0 but not 1.1

2004-02-18 Thread don
The constant for decoding maxpacket size is still wrong in 2.4.25. The low 11 bits are used for the count (not 10). Here is a patch. I also added more debug messages before error returns. If these are not wanted I can submit just the constant change. -- Don Reid --- hcd.c.orig Tue Feb 17 10

[linux-usb-devel] USB: devio iso interval in 2.4.25

2004-02-18 Thread don
Here is a patch that adds code from 2.6.* to pass the interval is ISO urbs. There is a check in hcd.c that requires this value to be non-zero. -- Don Reid --- devio.c.origFri Feb 13 11:23:47 2004 +++ devio.c Wed Feb 18 12:08:58 2004 @@ -784,7 +784,7 @@ struct async *as

Re: [linux-usb-devel] Usb patch : interval of iso urb doesn't get initialized.

2004-02-18 Thread don
(1 << (ep_desc->bInterval - 1)); if (uurb.buffer_length > 16384) return -EINVAL; if (!access_ok((uurb.endpoint & USB_DIR_IN) ? VERIFY_WRITE : VERIFY_READ, uurb.buffer, uurb.buffer_length)) -- Don Reid --

Re: [linux-usb-devel] USBDEVFS_SUBMITURB error with 2.0 but not 1.1

2004-02-12 Thread don
On Wed, Feb 11, 2004 at 05:13:07PM -0800, David Brownell wrote: > don wrote: > >I have a device based on an EZUSB-FX2 part. It sends data with ISO > >packets. My code uses the usbdevice_fs calls. It works on several > >systems with 1.1 USB ports, but not on a 2.0

[linux-usb-devel] USBDEVFS_SUBMITURB error with 2.0 but not 1.1

2004-02-11 Thread don
n't work under 2.6 yet). Log message excerpts below. I'm using alternative setting 2. -- Don Reid --- Feb 11 15:14:01 cvlx11 kernel: ehci_hcd 00:1d.7: USB 2.0 enabled, EHCI 1.00, driver 2003-Jun-19/2.4 Feb 11 15:14:01 cvlx11 kernel: Manufacture

Re: [linux-usb-devel] usbdevfs_usb.signr

2004-01-03 Thread don
RTMAX is _NSIG (64). Oh! My mistake. I saw the define of "NSIG" and missed that "_NSIG" is what I should have been looking at. Thank you. So devio will allow any signal from 32 to 63. That makes more sense. The only

Re: [linux-usb-devel] usbdevfs_usb.signr

2004-01-02 Thread don
m" ... maybe someone > was trying to disable those features in that kernel. I'm refering to the kernel source, not the /usr/include tree. This is all straight from the released Linux kernels (2.4.23 & 2.6.0). -- Don --- This SF.n

[linux-usb-devel] patches for usbdevice_fs.h comment

2004-01-02 Thread don
These correct a comment about the value for no signal in struct usbdevfs_urb. Patches are from 2.4.23 and 2.4.0, I hope that is allright. If there are rules for submitting patches, please tell me. -- Don Reid --- linux-2.4.23/include/linux/usbdevice_fs.h 2003-12-04 20:41:37.0 -0800

Re: [linux-usb-devel] usbdevfs_usb.signr

2004-01-02 Thread don
ide effects, he deserves what happens. But why not allow signals like SIGUSR1/2? Don Reid --- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tu

[linux-usb-devel] usbdevfs_usb.signr

2004-01-01 Thread don
r. Is the comment in usbdevice_fs.h wrong? 2) It appears that only 0 is allowed. When is this used? Don Reid --- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign u

Re: [linux-usb-devel] Usbnet and Zaurus (on 2.4.22)

2003-11-24 Thread don
ce in usbnet and changed that (per the diff I submitted earlier, I removed USB_DEVICE_ID_MATCH_INT_INFO) I didn't have to blacklist CDCEther because I never compiled it. -- Don Reid --- This SF.net email is sponsored by: SF.net Giveback P

Re: [linux-usb-devel] Usbnet and Zaurus (on 2.4.22)

2003-11-23 Thread don
On Thu, Nov 20, 2003 at 05:34:10AM -0800, David Brownell wrote: > don wrote: > >My Zaurus won't connect unless I modify this file. > > Looks to me like it should work just fine -- except that > hotplug won't load the module automatically because: Exactly. > >

[linux-usb-devel] Usbnet and Zaurus (on 2.4.22)

2003-11-19 Thread don
that sets this flag. The macros in linux/usb.h only set one flag or another, not two. After the following change, it works well. Is this an error in usbnet.c, or do I have something else that is old or mis-configured?

[linux-usb-devel] bestdata modem

2002-05-13 Thread Don Smith
modem is not a winmodem, and so i'm quite frustrated that it dosen't work many thanks don smith ___ Have big pipes? SourceForge.net is looking for download mirrors. We supply the hardware. You get the recognition. E