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.

rtl8180.c 757B

12345678910111213141516171819202122232425
  1. /* Realtek 8180 card: rtl818x driver + rtl8180 RF modules */
  2. FILE_LICENCE(GPL2_OR_LATER);
  3. #include <ipxe/pci.h>
  4. #include "rtl818x.h"
  5. static struct pci_device_id rtl8180_nics[] = {
  6. PCI_ROM(0x10ec, 0x8180, "rtl8180", "Realtek 8180", 0),
  7. PCI_ROM(0x1799, 0x6001, "f5d6001", "Belkin F5D6001", 0),
  8. PCI_ROM(0x1799, 0x6020, "f5d6020", "Belkin F5D6020", 0),
  9. PCI_ROM(0x1186, 0x3300, "dwl510", "D-Link DWL-510", 0),
  10. };
  11. struct pci_driver rtl8180_driver __pci_driver = {
  12. .ids = rtl8180_nics,
  13. .id_count = sizeof(rtl8180_nics) / sizeof(rtl8180_nics[0]),
  14. .probe = rtl818x_probe,
  15. .remove = rtl818x_remove,
  16. };
  17. REQUIRING_SYMBOL(rtl8180_driver);
  18. REQUIRE_OBJECT(rtl8180_grf5101);
  19. REQUIRE_OBJECT(rtl8180_max2820);
  20. REQUIRE_OBJECT(rtl8180_sa2400);