download prism2_pci.c
Language: C
License: GPL
LOC: 13
Project Info
Etherboot
Server: SourceForge
Type: cvs
...erboot‑5.1\src\drivers\net\
   3c509.c
   3c509.h
   3c515.c
   3c595.c
   3c595.h
   3c90x.c
   cs89x0.c
   cs89x0.h
   davicom.c
   depca.c
   e1000.c
   e1000_hw.h
   eepro.c
   eepro100.c
   epic100.c
   epic100.h
   fa311.c
   hfa384x.h
   lance.c
   natsemi.c
   ns8390.c
   ns8390.h
   p80211hdr.h
   pcnet32.c
   prism2.c
   prism2_pci.c
   prism2_plx.c
   rtl8139.c
   sis900.c
   sis900.h
   sk_g16.c
   sk_g16.h
   skel.c
   smc9000.c
   smc9000.h
   sundance.c
   tg3.c
   tg3.h
   tlan.c
   tlan.h
   tulip.c
   via-rhine.c
   w89c840.c
   wlan_compat.h

/**************************************************************************
Etherboot -  BOOTP/TFTP Bootstrap Program
Prism2 NIC driver for Etherboot
Wrapper for prism2_pci

Written by Michael Brown of Fen Systems Ltd
$Id: prism2_pci.c,v 1.2 2003/03/10 20:28:00 gbaum Exp $
***************************************************************************/

/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2, or (at
 * your option) any later version.
 */

#define WLAN_HOSTIF WLAN_PCI
#include "prism2.c"

static struct pci_id prism2_pci_nics[] = {
PCI_ROM(0x1260, 0x3873, "prism2_pci", "Harris Semiconductor Prism2.5 clone"),	/* Generic Prism2.5 PCI device */
};

static struct pci_driver prism2_pci_driver __pci_driver = {
	.type     = NIC_DRIVER,
	.name     = "Prism2_PCI",
	.probe    = prism2_pci_probe,
	.ids      = prism2_pci_nics,
	.id_count = sizeof(prism2_pci_nics)/sizeof(prism2_pci_nics[0]),
	.class    = 0,
};

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us