15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0+
2f0183a33SFelipe Balbi /*
3f0183a33SFelipe Balbi  * Driver for Realtek RTS51xx USB card reader
450a6cb93Swwang  *
550a6cb93Swwang  * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
650a6cb93Swwang  *
750a6cb93Swwang  * This program is free software; you can redistribute it and/or modify it
850a6cb93Swwang  * under the terms of the GNU General Public License as published by the
950a6cb93Swwang  * Free Software Foundation; either version 2, or (at your option) any
1050a6cb93Swwang  * later version.
1150a6cb93Swwang  *
1250a6cb93Swwang  * This program is distributed in the hope that it will be useful, but
1350a6cb93Swwang  * WITHOUT ANY WARRANTY; without even the implied warranty of
1450a6cb93Swwang  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
1550a6cb93Swwang  * General Public License for more details.
1650a6cb93Swwang  *
1750a6cb93Swwang  * You should have received a copy of the GNU General Public License along
1850a6cb93Swwang  * with this program; if not, see <http://www.gnu.org/licenses/>.
1950a6cb93Swwang  *
2050a6cb93Swwang  * Author:
2150a6cb93Swwang  *   wwang (wei_wang@realsil.com.cn)
2250a6cb93Swwang  *   No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
2350a6cb93Swwang  */
2450a6cb93Swwang 
2550a6cb93Swwang #if defined(CONFIG_USB_STORAGE_REALTEK) || \
2650a6cb93Swwang 		defined(CONFIG_USB_STORAGE_REALTEK_MODULE)
2750a6cb93Swwang 
28a8e62dd6SAlan Stern UNUSUAL_DEV(0x0bda, 0x0138, 0x0000, 0x9999,
2950a6cb93Swwang 		"Realtek",
3050a6cb93Swwang 		"USB Card Reader",
31a8e62dd6SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
3250a6cb93Swwang 
3350a6cb93Swwang UNUSUAL_DEV(0x0bda, 0x0158, 0x0000, 0x9999,
3450a6cb93Swwang 		"Realtek",
3550a6cb93Swwang 		"USB Card Reader",
36a8e62dd6SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
3750a6cb93Swwang 
38a8e62dd6SAlan Stern UNUSUAL_DEV(0x0bda, 0x0159, 0x0000, 0x9999,
3950a6cb93Swwang 		"Realtek",
4050a6cb93Swwang 		"USB Card Reader",
41a8e62dd6SAlan Stern 		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
4250a6cb93Swwang 
4350a6cb93Swwang #endif  /* defined(CONFIG_USB_STORAGE_REALTEK) || ... */
44