1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Unusual Devices File for SanDisk SDDR-55 SmartMedia reader
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; either version 2, or (at your option) any
8  * later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 
20 #if defined(CONFIG_USB_STORAGE_SDDR55) || \
21 		defined(CONFIG_USB_STORAGE_SDDR55_MODULE)
22 
23 /* Contributed by Peter Waechtler */
24 UNUSUAL_DEV( 0x07c4, 0xa103, 0x0000, 0x9999,
25 		"Datafab",
26 		"MDSM-B reader",
27 		USB_SC_SCSI, USB_PR_SDDR55, NULL,
28 		US_FL_FIX_INQUIRY),
29 
30 /* SM part - aeb <Andries.Brouwer@cwi.nl> */
31 UNUSUAL_DEV(  0x07c4, 0xa109, 0x0000, 0xffff,
32 		"Datafab Systems, Inc.",
33 		"USB to CF + SM Combo (LC1)",
34 		USB_SC_SCSI, USB_PR_SDDR55, NULL, 0),
35 
36 UNUSUAL_DEV( 0x0c0b, 0xa109, 0x0000, 0xffff,
37 		"Acomdata",
38 		"SM",
39 		USB_SC_SCSI, USB_PR_SDDR55, NULL, 0),
40 
41 UNUSUAL_DEV(  0x55aa, 0xa103, 0x0000, 0x9999,
42 		"Sandisk",
43 		"ImageMate SDDR55",
44 		USB_SC_SCSI, USB_PR_SDDR55, NULL, 0),
45 
46 #endif /* defined(CONFIG_USB_STORAGE_SDDR55) || ... */
47