unusual_realtek.h 822 B

123456789101112131415161718192021222324252627282930
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Driver for Realtek RTS51xx USB card reader
  4. *
  5. * Copyright(c) 2009 Realtek Semiconductor Corp. All rights reserved.
  6. *
  7. * Author:
  8. * wwang (wei_wang@realsil.com.cn)
  9. * No. 450, Shenhu Road, Suzhou Industry Park, Suzhou, China
  10. */
  11. #if defined(CONFIG_USB_STORAGE_REALTEK) || \
  12. defined(CONFIG_USB_STORAGE_REALTEK_MODULE)
  13. UNUSUAL_DEV(0x0bda, 0x0138, 0x0000, 0x9999,
  14. "Realtek",
  15. "USB Card Reader",
  16. USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
  17. UNUSUAL_DEV(0x0bda, 0x0158, 0x0000, 0x9999,
  18. "Realtek",
  19. "USB Card Reader",
  20. USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
  21. UNUSUAL_DEV(0x0bda, 0x0159, 0x0000, 0x9999,
  22. "Realtek",
  23. "USB Card Reader",
  24. USB_SC_DEVICE, USB_PR_DEVICE, init_realtek_cr, 0),
  25. #endif /* defined(CONFIG_USB_STORAGE_REALTEK) || ... */