您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

prism2_pci.c 1.1KB

12345678910111213141516171819202122232425262728293031323334
  1. /**************************************************************************
  2. Etherboot - BOOTP/TFTP Bootstrap Program
  3. Prism2 NIC driver for Etherboot
  4. Wrapper for prism2_pci
  5. Written by Michael Brown of Fen Systems Ltd
  6. $Id$
  7. ***************************************************************************/
  8. /*
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2, or (at
  12. * your option) any later version.
  13. */
  14. #define WLAN_HOSTIF WLAN_PCI
  15. #include "prism2.c"
  16. static struct pci_id prism2_pci_nics[] = {
  17. PCI_ROM(0x1260, 0x3873, "prism2_pci", "Harris Semiconductor Prism2.5 clone"),
  18. PCI_ROM(0x1260, 0x3873, "hwp01170", "ActionTec HWP01170"),
  19. PCI_ROM(0x1260, 0x3873, "dwl520", "DLink DWL-520"),
  20. };
  21. static struct pci_driver prism2_pci_driver __pci_driver = {
  22. .type = NIC_DRIVER,
  23. .name = "Prism2_PCI",
  24. .probe = prism2_pci_probe,
  25. .ids = prism2_pci_nics,
  26. .id_count = sizeof(prism2_pci_nics)/sizeof(prism2_pci_nics[0]),
  27. .class = 0,
  28. };