linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] USB storage: Make Pentax *ist DS works
@ 2004-12-30  1:47 Miquel Vidal
  2005-01-02  6:47 ` Phil Dibowitz
  0 siblings, 1 reply; 3+ messages in thread
From: Miquel Vidal @ 2004-12-30  1:47 UTC (permalink / raw)
  To: Phil Dibowitz; +Cc: linux-kernel

Hi All,

The change below in unusual_devs entries is needed to get the new Pentax
SLR *ist DS camera working. 

BR.
miquel

--- linux-2.6.10/drivers/usb/storage/unusual_devs.h.orig       
2004-12-30 02:26:25.000000000 +0100
+++ linux-2.6.10/drivers/usb/storage/unusual_devs.h     2004-12-30
02:26:18.000000000 +0100
@@ -775,7 +775,16 @@ UNUSUAL_DEV( 0x0a17, 0x006, 0x0000, 0xff
                 "Optio S/S4",
                 US_SC_DEVICE, US_PR_DEVICE, NULL,
                 US_FL_FIX_INQUIRY ),
-
+
+
+/* Submitted by Miquel Vidal <miquel@barrapunto.com> */
+UNUSUAL_DEV( 0x0a17, 0x0021, 0x0100, 0x0200,
+                "Pentax",
+                "*ist DS",
+                US_SC_DEVICE, US_PR_DEVICE, NULL,
+                US_FL_FIX_INQUIRY ),
+
+
 #ifdef CONFIG_USB_STORAGE_ISD200
 UNUSUAL_DEV(  0x0bf6, 0xa001, 0x0100, 0x0110,
                "ATI",




^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] USB storage: Make Pentax *ist DS works
  2004-12-30  1:47 [PATCH] USB storage: Make Pentax *ist DS works Miquel Vidal
@ 2005-01-02  6:47 ` Phil Dibowitz
  2005-01-07 23:41   ` Miquel Vidal
  0 siblings, 1 reply; 3+ messages in thread
From: Phil Dibowitz @ 2005-01-02  6:47 UTC (permalink / raw)
  To: Miquel Vidal; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 555 bytes --]

Miquel Vidal wrote:
> Hi All,
> 
> The change below in unusual_devs entries is needed to get the new Pentax
> SLR *ist DS camera working. 

Can you please include the output of "cat /proc/bus/usb/devices" ? Thanks.


-- 
Phil Dibowitz                             phil@ipom.com
Freeware and Technical Pages              Insanity Palace of Metallica
http://www.phildev.net/                   http://www.ipom.com/

"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."
  - Benjamin Franklin, 1759


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 256 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] USB storage: Make Pentax *ist DS works
  2005-01-02  6:47 ` Phil Dibowitz
@ 2005-01-07 23:41   ` Miquel Vidal
  0 siblings, 0 replies; 3+ messages in thread
From: Miquel Vidal @ 2005-01-07 23:41 UTC (permalink / raw)
  To: Phil Dibowitz; +Cc: linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1528 bytes --]

El dom, 02-01-2005 a las 07:47, Phil Dibowitz escribió:
> Miquel Vidal wrote:
> > Hi All,
> > 
> > The change below in unusual_devs entries is needed to get the new Pentax
> > SLR *ist DS camera working. 
> 
> Can you please include the output of "cat /proc/bus/usb/devices" ? Thanks.
> 

miquel@kusanagi:~$ cat /proc/bus/usb/devices

T:  Bus=01 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#=  1 Spd=12  MxCh= 2
B:  Alloc=  0/900 us ( 0%), #Int=  0, #Iso=  0
D:  Ver= 1.10 Cls=09(hub  ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
P:  Vendor=0000 ProdID=0000 Rev= 2.06
S:  Manufacturer=Linux 2.6.10 uhci_hcd
S:  Product=Intel Corp. 82801BA/BAM USB (Hub #1)
S:  SerialNumber=0000:00:1f.2
C:* #Ifs= 1 Cfg#= 1 Atr=c0 MxPwr=  0mA
I:  If#= 0 Alt= 0 #EPs= 1 Cls=09(hub  ) Sub=00 Prot=00 Driver=hub
E:  Ad=81(I) Atr=03(Int.) MxPS=   2 Ivl=255ms

T:  Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#=  2 Spd=12  MxCh= 0
D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs=  1
P:  Vendor=0a17 ProdID=0021 Rev= 1.00
S:  Manufacturer=PENTAX Corporation
S:  Product=PENTAX *ist DS
C:* #Ifs= 1 Cfg#= 1 Atr=c0 MxPwr=  2mA
I:  If#= 0 Alt= 0 #EPs= 2 Cls=08(stor.) Sub=06 Prot=50
Driver=usb-storage
E:  Ad=01(O) Atr=02(Bulk) MxPS=  64 Ivl=0ms
E:  Ad=82(I) Atr=02(Bulk) MxPS=  64 Ivl=0ms


miquel

--
Miquel Vidal          ::  Using Debian GNU/Linux
BarraPunto SysAdmin   ::  yonderboy@barrapunto.com
http://barrapunto.com ::  http://barrapunto.com/~yonderboy/bitacora
GnuPG public key available at http://sinetgy.org/~miquel


[-- Attachment #2: Esta parte del mensaje está firmada digitalmente --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-01-07 23:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-12-30  1:47 [PATCH] USB storage: Make Pentax *ist DS works Miquel Vidal
2005-01-02  6:47 ` Phil Dibowitz
2005-01-07 23:41   ` Miquel Vidal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).