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 556B

123456789101112131415161718
  1. /* Realtek 8180 card: rtl818x driver + rtl8180 RF modules */
  2. FILE_LICENCE(GPL2_OR_LATER);
  3. #include <ipxe/pci.h>
  4. PROVIDE_REQUIRING_SYMBOL();
  5. REQUIRE_OBJECT(rtl818x);
  6. REQUIRE_OBJECT(rtl8180_grf5101);
  7. REQUIRE_OBJECT(rtl8180_max2820);
  8. REQUIRE_OBJECT(rtl8180_sa2400);
  9. static struct pci_device_id rtl8180_nics[] __unused = {
  10. PCI_ROM(0x10ec, 0x8180, "rtl8180", "Realtek 8180", 0),
  11. PCI_ROM(0x1799, 0x6001, "f5d6001", "Belkin F5D6001", 0),
  12. PCI_ROM(0x1799, 0x6020, "f5d6020", "Belkin F5D6020", 0),
  13. PCI_ROM(0x1186, 0x3300, "dwl510", "D-Link DWL-510", 0),
  14. };