source: bootcd/isolinux/syslinux-6.03/gpxe/src/drivers/net/rtl818x/rtl8180.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 528 bytes
Line 
1/* Realtek 8180 card: rtl818x driver + rtl8180 RF modules */
2
3FILE_LICENCE(GPL2_OR_LATER);
4
5#include <gpxe/pci.h>
6
7REQUIRE_OBJECT(rtl818x);
8REQUIRE_OBJECT(rtl8180_grf5101);
9REQUIRE_OBJECT(rtl8180_max2820);
10REQUIRE_OBJECT(rtl8180_sa2400);
11
12static struct pci_device_id rtl8180_nics[] __unused = {
13        PCI_ROM(0x10ec, 0x8180, "rtl8180", "Realtek 8180", 0),
14        PCI_ROM(0x1799, 0x6001, "f5d6001", "Belkin F5D6001", 0),
15        PCI_ROM(0x1799, 0x6020, "f5d6020", "Belkin F5D6020", 0),
16        PCI_ROM(0x1186, 0x3300, "dwl510",  "D-Link DWL-510", 0),
17};
Note: See TracBrowser for help on using the repository browser.