⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cards.h

📁 i386的bootloader源码grub
💻 H
字号:
#ifndef	CARDS_H#define CARDS_H/* * 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. */#include "nic.h"/* OK, this is how the PCI support hack works:  if pci.h is included before * this file is included, assume that the driver supports PCI.  This means that * this file is usually included last.  */#ifdef	PCI_H#define PCI_ARG(x) ,x#else#define PCI_ARG(x)#endif#ifdef	INCLUDE_WDextern struct nic	*wd_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_3C503extern struct nic	*t503_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_VIA_RHINEextern struct nic	*rhine_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NEextern struct nic	*ne_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NS8390extern struct nic	*nepci_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_3C509extern struct nic	*t509_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_3C529extern struct nic	*t529_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_3C595extern struct nic	*t595_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_3C90Xextern struct nic	*a3c90x_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_EEPROextern struct nic	*eepro_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_EEPRO100extern struct nic	*eepro100_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_EPIC100extern struct nic	*epic100_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_OTULIPextern struct nic	*otulip_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_TULIPextern struct nic	*tulip_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_DAVICOMextern struct nic	*davicom_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_CS89X0extern struct nic	*cs89x0_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_LANCEextern struct nic	*lancepci_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NE2100extern struct nic	*ne2100_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NI6510extern struct nic	*ni6510_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_SK_G16extern struct nic	*SK_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_3C507extern struct nic	*t507_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NI5010extern struct nic	*ni5010_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NI5210extern struct nic	*ni5210_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_EXOS205extern struct nic	*exos205_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_SMC9000extern struct nic	*smc9000_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_TIARAextern struct nic	*tiara_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_DEPCAextern struct nic	*depca_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_RTL8139extern struct nic	*rtl8139_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_W89C840extern struct nic	*w89c840_probe(struct nic *, unsigned short *	PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_SIS900extern struct nic	*sis900_probe(struct nic *, unsigned short *        PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_NATSEMIextern struct nic	*natsemi_probe(struct nic *, unsigned short *        PCI_ARG(struct pci_device *));#endif#ifdef	INCLUDE_TLANextern struct nic	*tlan_probe(struct nic *, unsigned short *        PCI_ARG(struct pci_device *));#endif#endif	/* CARDS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -