You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rtl8185.c 650B

12345678910111213141516171819202122
  1. /* Realtek 8185 card: rtl818x driver + rtl8185_rtl8225 RF module */
  2. FILE_LICENCE(GPL2_OR_LATER);
  3. #include <ipxe/pci.h>
  4. #include "rtl818x.h"
  5. static struct pci_device_id rtl8185_nics[] __unused = {
  6. PCI_ROM(0x10ec, 0x8185, "rtl8185", "Realtek 8185", 0),
  7. PCI_ROM(0x1799, 0x700f, "f5d7000", "Belkin F5D7000", 0),
  8. PCI_ROM(0x1799, 0x701f, "f5d7010", "Belkin F5D7010", 0),
  9. };
  10. struct pci_driver rtl8185_driver __pci_driver = {
  11. .ids = rtl8185_nics,
  12. .id_count = sizeof(rtl8185_nics) / sizeof(rtl8185_nics[0]),
  13. .probe = rtl818x_probe,
  14. .remove = rtl818x_remove,
  15. };
  16. REQUIRING_SYMBOL(rtl8185_driver);
  17. REQUIRE_OBJECT(rtl8185_rtl8225);