18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0+ */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Driver for Realtek RTS51xx USB card reader
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * Author:
88c2ecf20Sopenharmony_ci *   wwang (wei_wang@realsil.com.cn)
98c2ecf20Sopenharmony_ci *   No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
108c2ecf20Sopenharmony_ci */
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#if defined(CONFIG_USB_STORAGE_REALTEK) || \
138c2ecf20Sopenharmony_ci		defined(CONFIG_USB_STORAGE_REALTEK_MODULE)
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bda, 0x0138, 0x0000, 0x9999,
168c2ecf20Sopenharmony_ci		"Realtek",
178c2ecf20Sopenharmony_ci		"USB Card Reader",
188c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bda, 0x0153, 0x0000, 0x9999,
218c2ecf20Sopenharmony_ci		"Realtek",
228c2ecf20Sopenharmony_ci		"USB Card Reader",
238c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
248c2ecf20Sopenharmony_ci
258c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bda, 0x0158, 0x0000, 0x9999,
268c2ecf20Sopenharmony_ci		"Realtek",
278c2ecf20Sopenharmony_ci		"USB Card Reader",
288c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
298c2ecf20Sopenharmony_ci
308c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bda, 0x0159, 0x0000, 0x9999,
318c2ecf20Sopenharmony_ci		"Realtek",
328c2ecf20Sopenharmony_ci		"USB Card Reader",
338c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
348c2ecf20Sopenharmony_ci
358c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bda, 0x0177, 0x0000, 0x9999,
368c2ecf20Sopenharmony_ci		"Realtek",
378c2ecf20Sopenharmony_ci		"USB Card Reader",
388c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
398c2ecf20Sopenharmony_ci
408c2ecf20Sopenharmony_ciUNUSUAL_DEV(0x0bda, 0x0184, 0x0000, 0x9999,
418c2ecf20Sopenharmony_ci		"Realtek",
428c2ecf20Sopenharmony_ci		"USB Card Reader",
438c2ecf20Sopenharmony_ci		USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
448c2ecf20Sopenharmony_ci
458c2ecf20Sopenharmony_ci#endif  /* defined(CONFIG_USB_STORAGE_REALTEK) || ... */
46