[linux-usb-devel] [PATCH] Make Aldi Traveler DC-4300 work with usb-storage

2005-01-29 Thread Daniel Drake
The signature of the Aldi Traveler DC-4300 camera has one bit set incorrectly and currently don't work at all with Linux. This patch makes it work :) Signed-off-by: Daniel Drake <[EMAIL PROTECTED]> --- linux-2.6.11-rc2/drivers/usb/storage/transport.c.orig 2005-01-29 22:21:17.761827352 + +++ l

Re: [linux-usb-devel] [PATCH] Make Aldi Traveler DC-4300 work with usb-storage

2005-01-30 Thread Alan Stern
On Sat, 29 Jan 2005, Daniel Drake wrote: > The signature of the Aldi Traveler DC-4300 camera has one bit set incorrectly > and currently don't work at all with Linux. > > This patch makes it work :) > +/* This is for the Aldi Traveler DC-4300 cameras */ > +#define US_BULK_CS_ALDI_SIGN 0x43425

Re: [linux-usb-devel] [PATCH] Make Aldi Traveler DC-4300 work with usb-storage

2005-01-30 Thread Daniel Drake
Alan Stern wrote: +/* This is for the Aldi Traveler DC-4300 cameras */ +#define US_BULK_CS_ALDI_SIGN 0x43425355 /* Spells out 'USBR' */ It actually spells out 'USBC'. Hmm, yes, you are right. I'm beginning to wonder about all these tests for valid signatures. Note that the code always tes

Re: [linux-usb-devel] [PATCH] Make Aldi Traveler DC-4300 work with usb-storage

2005-01-31 Thread Greg KH
On Sun, Jan 30, 2005 at 07:52:38PM +, Daniel Drake wrote: > Alan Stern wrote: > >>+/* This is for the Aldi Traveler DC-4300 cameras */ > >>+#define US_BULK_CS_ALDI_SIGN 0x43425355 /* Spells out 'USBR' */ > > > > > >It actually spells out 'USBC'. > > Hmm, yes, you are right. Ok, I'll ho