xref: /OK3568_Linux_fs/kernel/drivers/usb/storage/unusual_alauda.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0+ */
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun  * Unusual Devices File for the Alauda-based card readers
4*4882a593Smuzhiyun  */
5*4882a593Smuzhiyun 
6*4882a593Smuzhiyun #if defined(CONFIG_USB_STORAGE_ALAUDA) || \
7*4882a593Smuzhiyun 		defined(CONFIG_USB_STORAGE_ALAUDA_MODULE)
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun UNUSUAL_DEV(  0x0584, 0x0008, 0x0102, 0x0102,
10*4882a593Smuzhiyun 		"Fujifilm",
11*4882a593Smuzhiyun 		"DPC-R1 (Alauda)",
12*4882a593Smuzhiyun 		USB_SC_SCSI, USB_PR_ALAUDA, init_alauda, 0),
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun UNUSUAL_DEV(  0x07b4, 0x010a, 0x0102, 0x0102,
15*4882a593Smuzhiyun 		"Olympus",
16*4882a593Smuzhiyun 		"MAUSB-10 (Alauda)",
17*4882a593Smuzhiyun 		USB_SC_SCSI, USB_PR_ALAUDA, init_alauda, 0),
18*4882a593Smuzhiyun 
19*4882a593Smuzhiyun #endif /* defined(CONFIG_USB_STORAGE_ALAUDA) || ... */
20