VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/Etherboot-src/drivers/net/prism2_plx.c@ 1300

Last change on this file since 1300 was 1, checked in by vboxsync, 55 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.6 KB
Line 
1/**************************************************************************
2Etherboot - BOOTP/TFTP Bootstrap Program
3Prism2 NIC driver for Etherboot
4Wrapper for prism2_plx
5
6Written by Michael Brown of Fen Systems Ltd
7$Id: prism2_plx.c 1 1970-01-01 00:00:00Z vboxsync $
8***************************************************************************/
9
10/*
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2, or (at
14 * your option) any later version.
15 */
16
17#define WLAN_HOSTIF WLAN_PLX
18#include "prism2.c"
19
20static struct pci_id prism2_plx_nics[] = {
21PCI_ROM(0x1385, 0x4100, "ma301", "Netgear MA301"),
22PCI_ROM(0x10b7, 0x7770, "3c-airconnect", "3Com AirConnect"),
23PCI_ROM(0x111a, 0x1023, "ss1023", "Siemens SpeedStream SS1023"),
24PCI_ROM(0x15e8, 0x0130, "correga", "Correga"),
25PCI_ROM(0x1638, 0x1100, "smc2602w", "SMC EZConnect SMC2602W"), /* or Eumitcom PCI WL11000, Addtron AWA-100 */
26PCI_ROM(0x16ab, 0x1100, "gl24110p", "Global Sun Tech GL24110P"),
27PCI_ROM(0x16ab, 0x1101, "16ab-1101", "Unknown"),
28PCI_ROM(0x16ab, 0x1102, "wdt11", "Linksys WDT11"),
29PCI_ROM(0x16ec, 0x3685, "usr2415", "USR 2415"),
30PCI_ROM(0xec80, 0xec00, "f5d6000", "Belkin F5D6000"),
31PCI_ROM(0x126c, 0x8030, "emobility", "Nortel emobility"),
32};
33
34static struct pci_driver prism2_plx_driver __pci_driver = {
35 .type = NIC_DRIVER,
36 .name = "Prism2_PLX",
37 .probe = prism2_plx_probe,
38 .ids = prism2_plx_nics,
39 .id_count = sizeof(prism2_plx_nics)/sizeof(prism2_plx_nics[0]),
40 .class = 0,
41};
42
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette