Last change
on this file since 895 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:
1013 bytes
|
Line | |
---|
1 | /**************************************************************************
|
---|
2 | Etherboot - BOOTP/TFTP Bootstrap Program
|
---|
3 | Prism2 NIC driver for Etherboot
|
---|
4 | Wrapper for prism2_pci
|
---|
5 |
|
---|
6 | Written by Michael Brown of Fen Systems Ltd
|
---|
7 | $Id: prism2_pci.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_PCI
|
---|
18 | #include "prism2.c"
|
---|
19 |
|
---|
20 | static struct pci_id prism2_pci_nics[] = {
|
---|
21 | PCI_ROM(0x1260, 0x3873, "prism2_pci", "Harris Semiconductor Prism2.5 clone"), /* Generic Prism2.5 PCI device */
|
---|
22 | };
|
---|
23 |
|
---|
24 | static struct pci_driver prism2_pci_driver __pci_driver = {
|
---|
25 | .type = NIC_DRIVER,
|
---|
26 | .name = "Prism2_PCI",
|
---|
27 | .probe = prism2_pci_probe,
|
---|
28 | .ids = prism2_pci_nics,
|
---|
29 | .id_count = sizeof(prism2_pci_nics)/sizeof(prism2_pci_nics[0]),
|
---|
30 | .class = 0,
|
---|
31 | };
|
---|
32 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.