亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? space.c

?? 為At91rm9200制作的cs8900驅(qū)動(dòng)
?? C
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/* * INET		An implementation of the TCP/IP protocol suite for the LINUX *		operating system.  INET is implemented using the  BSD Socket *		interface as the means of communication with the user level. * *		Holds initial configuration information for devices. * * Version:	@(#)Space.c	1.0.7	08/12/93 * * Authors:	Ross Biro, <bir7@leland.Stanford.Edu> *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> *		Donald J. Becker, <becker@scyld.com> * * Changelog: *		Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 09/1999 *		- fix sbni: s/device/net_device/ *		Paul Gortmaker (06/98):  *		 - sort probes in a sane way, make sure all (safe) probes *		   get run once & failed autoprobes don't autoprobe again. * *	FIXME: *		Phase out placeholder dev entries put in the linked list *		here in favour of drivers using init_etherdev(NULL, ...) *		combined with a single find_all_devs() function (for 2.3) * *		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 of the License, or (at your option) any later version. */#include <linux/config.h>#include <linux/netdevice.h>#include <linux/errno.h>#include <linux/init.h>#include <linux/netlink.h>#include <linux/divert.h>#define	NEXT_DEV	NULL/* A unified ethernet device probe.  This is the easiest way to have every   ethernet adaptor have the name "eth[0123...]".   */extern int ne2_probe(struct net_device *dev);extern int hp100_probe(struct net_device *dev);extern int ultra_probe(struct net_device *dev);extern int ultra32_probe(struct net_device *dev);extern int ultramca_probe(struct net_device *dev);extern int wd_probe(struct net_device *dev);extern int el2_probe(struct net_device *dev);extern int ne_probe(struct net_device *dev);extern int hp_probe(struct net_device *dev);extern int hp_plus_probe(struct net_device *dev);extern int znet_probe(struct net_device *);extern int express_probe(struct net_device *);extern int eepro_probe(struct net_device *);extern int el3_probe(struct net_device *);extern int at1500_probe(struct net_device *);extern int at1700_probe(struct net_device *);extern int fmv18x_probe(struct net_device *);extern int eth16i_probe(struct net_device *);extern int depca_probe(struct net_device *);extern int i82596_probe(struct net_device *);extern int ewrk3_probe(struct net_device *);extern int de4x5_probe(struct net_device *);extern int el1_probe(struct net_device *);extern int wavelan_probe(struct net_device *);extern int arlan_probe(struct net_device *);extern int el16_probe(struct net_device *);extern int elmc_probe(struct net_device *);extern int skmca_probe(struct net_device *);extern int elplus_probe(struct net_device *);extern int ac3200_probe(struct net_device *);extern int es_probe(struct net_device *);extern int lne390_probe(struct net_device *);extern int ne3210_probe(struct net_device *);extern int e2100_probe(struct net_device *);extern int ni5010_probe(struct net_device *);extern int ni52_probe(struct net_device *);extern int ni65_probe(struct net_device *);extern int sonic_probe(struct net_device *);extern int SK_init(struct net_device *);extern int seeq8005_probe(struct net_device *);extern int smc_init( struct net_device * );extern int sgiseeq_probe(struct net_device *);extern int atarilance_probe(struct net_device *);extern int sun3lance_probe(struct net_device *);extern int sun3_82586_probe(struct net_device *);extern int apne_probe(struct net_device *);extern int bionet_probe(struct net_device *);extern int pamsnet_probe(struct net_device *);extern int cs89x0_probe(struct net_device *dev);extern int ethertap_probe(struct net_device *dev);extern int hplance_probe(struct net_device *dev);extern int bagetlance_probe(struct net_device *);extern int mvme147lance_probe(struct net_device *dev);extern int tc515_probe(struct net_device *dev);extern int lance_probe(struct net_device *dev);extern int mace_probe(struct net_device *dev);extern int macsonic_probe(struct net_device *dev);extern int mac8390_probe(struct net_device *dev);extern int mac89x0_probe(struct net_device *dev);extern int mc32_probe(struct net_device *dev);  /* Detachable devices ("pocket adaptors") */extern int de600_probe(struct net_device *);extern int de620_probe(struct net_device *);/* FDDI adapters */extern int skfp_probe(struct net_device *dev);/* Fibre Channel adapters */extern int iph5526_probe(struct net_device *dev);/* SBNI adapters */extern int sbni_probe(struct net_device *);struct devprobe{	int (*probe)(struct net_device *dev);	int status;	/* non-zero if autoprobe has failed */};/* * probe_list walks a list of probe functions and calls each so long * as a non-zero ioaddr is given, or as long as it hasn't already failed  * to find a card in the past (as recorded by "status") when asked to * autoprobe (i.e. a probe that fails to find a card when autoprobing * will not be asked to autoprobe again).  It exits when a card is found. */static int __init probe_list(struct net_device *dev, struct devprobe *plist){	struct devprobe *p = plist;	unsigned long base_addr = dev->base_addr;#ifdef CONFIG_NET_DIVERT	int ret;#endif /* CONFIG_NET_DIVERT */	while (p->probe != NULL) {		if (base_addr && p->probe(dev) == 0) {	/* probe given addr */#ifdef CONFIG_NET_DIVERT			ret = alloc_divert_blk(dev);			if (ret)				return ret;#endif /* CONFIG_NET_DIVERT */			return 0;		} else if (p->status == 0) {		/* has autoprobe failed yet? */			p->status = p->probe(dev);	/* no, try autoprobe */			if (p->status == 0) {#ifdef CONFIG_NET_DIVERT				ret = alloc_divert_blk(dev);				if (ret)					return ret;#endif /* CONFIG_NET_DIVERT */				return 0;			}		}		p++;	}	return -ENODEV;}/* * This is a bit of an artificial separation as there are PCI drivers * that also probe for EISA cards (in the PCI group) and there are ISA * drivers that probe for EISA cards (in the ISA group).  These are the * EISA only driver probes, and also the legacy PCI probes */static struct devprobe eisa_probes[] __initdata = {#ifdef CONFIG_DE4X5             /* DEC DE425, DE434, DE435 adapters */	{de4x5_probe, 0},#endif#ifdef CONFIG_ULTRA32 	{ultra32_probe, 0},	#endif#ifdef CONFIG_AC3200		{ac3200_probe, 0},#endif#ifdef CONFIG_ES3210	{es_probe, 0},#endif#ifdef CONFIG_LNE390	{lne390_probe, 0},#endif#ifdef CONFIG_NE3210	{ne3210_probe, 0},#endif	{NULL, 0},};static struct devprobe mca_probes[] __initdata = {#ifdef CONFIG_ULTRAMCA 	{ultramca_probe, 0},#endif#ifdef CONFIG_NE2_MCA	{ne2_probe, 0},#endif#ifdef CONFIG_ELMC		/* 3c523 */	{elmc_probe, 0},#endif#ifdef CONFIG_ELMC_II		/* 3c527 */	{mc32_probe, 0},#endif#ifdef CONFIG_SKMC              /* SKnet Microchannel */        {skmca_probe, 0},#endif	{NULL, 0},};/* * ISA probes that touch addresses < 0x400 (including those that also * look for EISA/PCI/MCA cards in addition to ISA cards). */static struct devprobe isa_probes[] __initdata = {#ifdef CONFIG_EL3		/* ISA, EISA, MCA 3c5x9 */	{el3_probe, 0},#endif#ifdef CONFIG_HP100 		/* ISA, EISA & PCI */	{hp100_probe, 0},#endif	#ifdef CONFIG_3C515	{tc515_probe, 0},#endif#ifdef CONFIG_ULTRA 	{ultra_probe, 0},#endif#ifdef CONFIG_WD80x3 	{wd_probe, 0},#endif#ifdef CONFIG_EL2 		/* 3c503 */	{el2_probe, 0},#endif#ifdef CONFIG_HPLAN	{hp_probe, 0},#endif#ifdef CONFIG_HPLAN_PLUS	{hp_plus_probe, 0},#endif#ifdef CONFIG_E2100		/* Cabletron E21xx series. */	{e2100_probe, 0},#endif#ifdef CONFIG_NE2000		/* ISA (use ne2k-pci for PCI cards) */	{ne_probe, 0},#endif#ifdef CONFIG_LANCE		/* ISA/VLB (use pcnet32 for PCI cards) */	{lance_probe, 0},#endif#ifdef CONFIG_SMC9194	{smc_init, 0},#endif#ifdef CONFIG_SEEQ8005 	{seeq8005_probe, 0},#endif#ifdef CONFIG_AT1500	{at1500_probe, 0},#endif#ifdef CONFIG_CS89x0 	{cs89x0_probe, 0},#endif#ifdef CONFIG_AT1700	{at1700_probe, 0},#endif#ifdef CONFIG_FMV18X		/* Fujitsu FMV-181/182 */	{fmv18x_probe, 0},#endif#ifdef CONFIG_ETH16I	{eth16i_probe, 0},	/* ICL EtherTeam 16i/32 */#endif#ifdef CONFIG_ZNET		/* Zenith Z-Note and some IBM Thinkpads. */	{znet_probe, 0},#endif#ifdef CONFIG_EEXPRESS		/* Intel EtherExpress */	{express_probe, 0},#endif#ifdef CONFIG_EEXPRESS_PRO	/* Intel EtherExpress Pro/10 */	{eepro_probe, 0},#endif#ifdef CONFIG_DEPCA		/* DEC DEPCA */	{depca_probe, 0},#endif#if defined(CONFIG_CS89x0) || defined(CONFIG_CERF_CS8900A) 	{cs89x0_probe, 0},#endif#ifdef CONFIG_EWRK3             /* DEC EtherWORKS 3 */    	{ewrk3_probe, 0},#endif#if defined(CONFIG_APRICOT) || defined(CONFIG_MVME16x_NET) || defined(CONFIG_BVME6000_NET)	/* Intel I82596 */	{i82596_probe, 0},#endif#ifdef CONFIG_EL1		/* 3c501 */	{el1_probe, 0},#endif#ifdef CONFIG_WAVELAN		/* WaveLAN */	{wavelan_probe, 0},#endif#ifdef CONFIG_ARLAN		/* Aironet */	{arlan_probe, 0},#endif#ifdef CONFIG_EL16		/* 3c507 */	{el16_probe, 0},#endif#ifdef CONFIG_ELPLUS		/* 3c505 */	{elplus_probe, 0},#endif#ifdef CONFIG_SK_G16	{SK_init, 0},#endif#ifdef CONFIG_NI5010	{ni5010_probe, 0},#endif#ifdef CONFIG_NI52	{ni52_probe, 0},#endif#ifdef CONFIG_NI65	{ni65_probe, 0},#endif	{NULL, 0},};static struct devprobe parport_probes[] __initdata = {#ifdef CONFIG_DE600		/* D-Link DE-600 adapter */	{de600_probe, 0},#endif#ifdef CONFIG_DE620		/* D-Link DE-620 adapter */	{de620_probe, 0},#endif	{NULL, 0},};static struct devprobe m68k_probes[] __initdata = {#ifdef CONFIG_ATARILANCE	/* Lance-based Atari ethernet boards */	{atarilance_probe, 0},#endif

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲综合久久av| 欧美在线999| 国产精品一区二区免费不卡 | 亚洲午夜视频在线| 玉足女爽爽91| 亚洲最大色网站| 一区二区三区不卡在线观看| 一区二区三区91| 亚洲影院在线观看| 亚洲国产综合人成综合网站| 一二三四区精品视频| 亚洲午夜一区二区| 视频一区二区中文字幕| 日韩不卡手机在线v区| 久久疯狂做爰流白浆xx| 国产一区二区日韩精品| 成人激情免费视频| 91蝌蚪国产九色| 在线精品视频一区二区| 91精品国产欧美一区二区| 日韩美女视频一区二区在线观看| 久久众筹精品私拍模特| 国产精品久久精品日日| 亚洲国产一区二区在线播放| 天天做天天摸天天爽国产一区 | 91在线视频观看| 欧美网站一区二区| 日韩午夜精品电影| 久久精品日韩一区二区三区| 国产精品久久久久久亚洲伦| 亚洲国产视频一区| 久久精品国产精品亚洲综合| 高清beeg欧美| 欧美性猛交xxxxxx富婆| 亚洲精品一线二线三线| 综合色中文字幕| 奇米色一区二区| 国产iv一区二区三区| 欧美色图一区二区三区| 久久这里只有精品6| 一区二区三区在线观看网站| 九色综合狠狠综合久久| eeuss鲁一区二区三区| 欧美日韩国产另类不卡| 久久久蜜桃精品| 亚洲韩国一区二区三区| 国产jizzjizz一区二区| 欧美日本视频在线| 国产精品私人影院| 日本欧美肥老太交大片| 97se亚洲国产综合自在线 | 蜜臀av亚洲一区中文字幕| 成人av电影在线网| 欧美一区二区久久久| 中文字幕一区二区日韩精品绯色| 视频一区视频二区中文| 99国产精品久久久久久久久久久| 日韩一区国产二区欧美三区| 亚洲女性喷水在线观看一区| 国产亚洲污的网站| 中文字幕一区二区三区四区不卡| 五月天网站亚洲| av中文字幕亚洲| 欧美成人艳星乳罩| 一区二区三区在线播放| 国产成人综合视频| 欧美巨大另类极品videosbest | 欧美一卡二卡在线| 亚洲女同ⅹxx女同tv| 国产成都精品91一区二区三| 91精品久久久久久久久99蜜臂| 亚洲女女做受ⅹxx高潮| 成人美女视频在线看| 精品国产一区二区三区不卡| 亚洲成av人片一区二区梦乃| 99视频国产精品| 欧美高清在线精品一区| 黑人巨大精品欧美一区| 欧美一区二区三区视频免费| 亚洲国产视频一区二区| 色哟哟欧美精品| 亚洲欧洲精品一区二区精品久久久 | 亚洲尤物视频在线| 99国产精品久| 国产精品免费久久| 国产精品一二三在| 精品国产一区二区亚洲人成毛片| 日韩制服丝袜av| 欧美日韩一区久久| 亚洲一区二区偷拍精品| 7777精品伊人久久久大香线蕉超级流畅| 日韩一区在线播放| 成人动漫视频在线| 欧美国产精品中文字幕| 国产成人精品影视| 国产日产欧美一区| 国产成人啪免费观看软件| 久久亚洲欧美国产精品乐播| 寂寞少妇一区二区三区| 精品国产污网站| 极品销魂美女一区二区三区| 欧美变态口味重另类| 麻豆精品一二三| 久久综合久久鬼色| 国产乱码精品一区二区三区忘忧草 | 国产成人亚洲综合a∨婷婷| 久久久亚洲国产美女国产盗摄 | 久久综合精品国产一区二区三区| 激情综合色播五月| 久久免费视频色| 高清不卡一区二区在线| 国产精品久久久久久久久图文区| av不卡一区二区三区| 亚洲欧美一区二区在线观看| 91麻豆精品秘密| 亚洲一区二区三区三| 7777精品伊人久久久大香线蕉的 | 免费在线观看一区二区三区| 91精品国产综合久久精品app| 久久精品噜噜噜成人88aⅴ| 精品福利av导航| 成人免费观看视频| 亚洲免费电影在线| 欧美女孩性生活视频| 六月丁香婷婷色狠狠久久| 久久久久88色偷偷免费| 99国产精品国产精品久久| 午夜精品福利视频网站| 日韩欧美另类在线| 国产成人在线电影| 136国产福利精品导航| 欧美视频精品在线| 国内精品视频666| 亚洲人成亚洲人成在线观看图片| 欧美日韩在线不卡| 国产精品一线二线三线精华| 亚洲少妇30p| 日韩一区二区三| 东方欧美亚洲色图在线| 亚洲国产乱码最新视频| 精品国产91亚洲一区二区三区婷婷| 成人av电影观看| 日本中文字幕一区二区视频 | 午夜不卡在线视频| 久久色在线视频| 91福利精品视频| 国产一区在线不卡| 尤物在线观看一区| 欧美r级在线观看| 一道本成人在线| 狠狠色综合色综合网络| 亚洲精品自拍动漫在线| 日韩欧美中文字幕精品| 99久久精品国产一区| 蜜臀av一区二区在线免费观看 | 奇米色一区二区| 成人欧美一区二区三区小说| 日韩精品一区在线| 在线免费观看日韩欧美| 国产麻豆精品在线| 午夜免费欧美电影| 亚洲欧美在线视频观看| 精品成人私密视频| 欧美色成人综合| 91亚洲精品久久久蜜桃网站 | 欧美一级夜夜爽| 色播五月激情综合网| 国产精品一线二线三线精华| 亚洲18色成人| 自拍偷拍国产精品| 国产日韩影视精品| 欧美一区二区三区婷婷月色| 色婷婷精品大视频在线蜜桃视频| 国产乱码精品一区二区三区忘忧草| 亚洲国产毛片aaaaa无费看 | 成人丝袜视频网| 激情成人综合网| 日韩中文字幕av电影| 亚洲最大成人综合| 18欧美乱大交hd1984| 日本一区二区三区久久久久久久久不 | 日韩精品中文字幕一区二区三区| 欧美午夜理伦三级在线观看| 91蜜桃婷婷狠狠久久综合9色| 国产成人a级片| 国产呦萝稀缺另类资源| 久久精品国产精品亚洲红杏| 视频一区免费在线观看| 亚洲成人中文在线| 亚洲精品国产一区二区三区四区在线| 中文字幕欧美区| 久久久蜜桃精品| 久久久久综合网| 久久久综合视频| 久久久高清一区二区三区| 精品国产乱码久久久久久牛牛| 91精品国产一区二区三区蜜臀| 欧美精品在线视频| 制服丝袜亚洲精品中文字幕| 69堂精品视频|