10ff71883SAlan Stern /* Unusual Devices File for SanDisk SDDR-09 SmartMedia reader
20ff71883SAlan Stern  *
30ff71883SAlan Stern  * This program is free software; you can redistribute it and/or modify it
40ff71883SAlan Stern  * under the terms of the GNU General Public License as published by the
50ff71883SAlan Stern  * Free Software Foundation; either version 2, or (at your option) any
60ff71883SAlan Stern  * later version.
70ff71883SAlan Stern  *
80ff71883SAlan Stern  * This program is distributed in the hope that it will be useful, but
90ff71883SAlan Stern  * WITHOUT ANY WARRANTY; without even the implied warranty of
100ff71883SAlan Stern  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
110ff71883SAlan Stern  * General Public License for more details.
120ff71883SAlan Stern  *
130ff71883SAlan Stern  * You should have received a copy of the GNU General Public License along
140ff71883SAlan Stern  * with this program; if not, write to the Free Software Foundation, Inc.,
150ff71883SAlan Stern  * 675 Mass Ave, Cambridge, MA 02139, USA.
160ff71883SAlan Stern  */
170ff71883SAlan Stern 
180ff71883SAlan Stern #if defined(CONFIG_USB_STORAGE_SDDR09) || \
190ff71883SAlan Stern 		defined(CONFIG_USB_STORAGE_SDDR09_MODULE)
200ff71883SAlan Stern 
210ff71883SAlan Stern UNUSUAL_DEV(  0x0436, 0x0005, 0x0100, 0x0100,
220ff71883SAlan Stern 		"Microtech",
230ff71883SAlan Stern 		"CameraMate (DPCM_USB)",
240ff71883SAlan Stern 		US_SC_SCSI, US_PR_DPCM_USB, NULL, 0),
250ff71883SAlan Stern 
260ff71883SAlan Stern UNUSUAL_DEV(  0x04e6, 0x0003, 0x0000, 0x9999,
270ff71883SAlan Stern 		"Sandisk",
280ff71883SAlan Stern 		"ImageMate SDDR09",
290ff71883SAlan Stern 		US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init,
300ff71883SAlan Stern 		0),
310ff71883SAlan Stern 
320ff71883SAlan Stern /* This entry is from Andries.Brouwer@cwi.nl */
330ff71883SAlan Stern UNUSUAL_DEV(  0x04e6, 0x0005, 0x0100, 0x0208,
340ff71883SAlan Stern 		"SCM Microsystems",
350ff71883SAlan Stern 		"eUSB SmartMedia / CompactFlash Adapter",
360ff71883SAlan Stern 		US_SC_SCSI, US_PR_DPCM_USB, usb_stor_sddr09_dpcm_init,
370ff71883SAlan Stern 		0),
380ff71883SAlan Stern 
390ff71883SAlan Stern UNUSUAL_DEV(  0x066b, 0x0105, 0x0100, 0x0100,
400ff71883SAlan Stern 		"Olympus",
410ff71883SAlan Stern 		"Camedia MAUSB-2",
420ff71883SAlan Stern 		US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init,
430ff71883SAlan Stern 		0),
440ff71883SAlan Stern 
450ff71883SAlan Stern UNUSUAL_DEV(  0x0781, 0x0200, 0x0000, 0x9999,
460ff71883SAlan Stern 		"Sandisk",
470ff71883SAlan Stern 		"ImageMate SDDR-09",
480ff71883SAlan Stern 		US_SC_SCSI, US_PR_EUSB_SDDR09, usb_stor_sddr09_init,
490ff71883SAlan Stern 		0),
500ff71883SAlan Stern 
510ff71883SAlan Stern UNUSUAL_DEV(  0x07af, 0x0006, 0x0100, 0x0100,
520ff71883SAlan Stern 		"Microtech",
530ff71883SAlan Stern 		"CameraMate (DPCM_USB)",
540ff71883SAlan Stern 		US_SC_SCSI, US_PR_DPCM_USB, NULL, 0),
550ff71883SAlan Stern 
560ff71883SAlan Stern #endif /* defined(CONFIG_USB_STORAGE_SDDR09) || ... */
57