2017-11-03 18:28:30 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-04-18 18:09:11 +08:00
|
|
|
/*
|
|
|
|
* Driver for Realtek RTS51xx USB card reader
|
2011-01-14 16:53:34 +08:00
|
|
|
*
|
|
|
|
* Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* wwang (wei_wang@realsil.com.cn)
|
|
|
|
* No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(CONFIG_USB_STORAGE_REALTEK) || \
|
|
|
|
defined(CONFIG_USB_STORAGE_REALTEK_MODULE)
|
|
|
|
|
2011-05-18 02:45:48 +08:00
|
|
|
UNUSUAL_DEV(0x0bda, 0x0138, 0x0000, 0x9999,
|
2011-01-14 16:53:34 +08:00
|
|
|
"Realtek",
|
|
|
|
"USB Card Reader",
|
2011-05-18 02:45:48 +08:00
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
|
2011-01-14 16:53:34 +08:00
|
|
|
|
2019-06-04 00:20:49 +08:00
|
|
|
UNUSUAL_DEV(0x0bda, 0x0153, 0x0000, 0x9999,
|
|
|
|
"Realtek",
|
|
|
|
"USB Card Reader",
|
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
|
|
|
|
|
2011-01-14 16:53:34 +08:00
|
|
|
UNUSUAL_DEV(0x0bda, 0x0158, 0x0000, 0x9999,
|
|
|
|
"Realtek",
|
|
|
|
"USB Card Reader",
|
2011-05-18 02:45:48 +08:00
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
|
2011-01-14 16:53:34 +08:00
|
|
|
|
2011-05-18 02:45:48 +08:00
|
|
|
UNUSUAL_DEV(0x0bda, 0x0159, 0x0000, 0x9999,
|
2011-01-14 16:53:34 +08:00
|
|
|
"Realtek",
|
|
|
|
"USB Card Reader",
|
2011-05-18 02:45:48 +08:00
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
|
2011-01-14 16:53:34 +08:00
|
|
|
|
2018-11-23 16:42:19 +08:00
|
|
|
UNUSUAL_DEV(0x0bda, 0x0177, 0x0000, 0x9999,
|
|
|
|
"Realtek",
|
|
|
|
"USB Card Reader",
|
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
|
|
|
|
|
|
|
|
UNUSUAL_DEV(0x0bda, 0x0184, 0x0000, 0x9999,
|
|
|
|
"Realtek",
|
|
|
|
"USB Card Reader",
|
|
|
|
USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
|
|
|
|
|
2011-01-14 16:53:34 +08:00
|
|
|
#endif /* defined(CONFIG_USB_STORAGE_REALTEK) || ... */
|