--- Gnu-Mach/linux/dev/drivers/net/Space.c 2020/09/02 04:41:39 1.1 +++ Gnu-Mach/linux/dev/drivers/net/Space.c 2020/09/02 04:46:00 1.1.1.3 @@ -62,6 +62,14 @@ extern int ewrk3_probe(struct device *); extern int de4x5_probe(struct device *); extern int el1_probe(struct device *); extern int via_rhine_probe(struct device *); +extern int natsemi_probe(struct device *); +extern int ns820_probe(struct device *); +extern int winbond840_probe(struct device *); +extern int hamachi_probe(struct device *); +extern int sundance_probe(struct device *); +extern int starfire_probe(struct device *); +extern int myson803_probe(struct device *); +extern int igige_probe(struct device *); #if defined(CONFIG_WAVELAN) extern int wavelan_probe(struct device *); #endif /* defined(CONFIG_WAVELAN) */ @@ -85,6 +93,7 @@ extern int yellowfin_probe(struct device extern int eepro100_probe(struct device *); extern int epic100_probe(struct device *); extern int rtl8139_probe(struct device *); +extern int sis900_probe(struct device *); extern int tlan_probe(struct device *); extern int isa515_probe(struct device *); extern int pcnet32_probe(struct device *); @@ -93,6 +102,7 @@ extern int lance_probe(struct device *); extern int atp_init(struct device *); extern int de600_probe(struct device *); extern int de620_probe(struct device *); +extern int tc515_probe(struct device *); static int ethif_probe(struct device *dev) @@ -128,9 +138,36 @@ ethif_probe(struct device *dev) #ifdef CONFIG_RTL8139 && rtl8139_probe(dev) #endif +#ifdef CONFIG_SIS900 + && sis900_probe(dev) +#endif #ifdef CONFIG_VIA_RHINE && via_rhine_probe(dev) #endif +#ifdef CONFIG_NATSEMI + && natsemi_probe(dev) +#endif +#ifdef CONFIG_NS820 + && ns820_probe(dev) +#endif +#ifdef CONFIG_WINBOND840 + && winbond840_probe(dev) +#endif +#ifdef CONFIG_HAMACHI + && hamachi_probe(dev) +#endif +#ifdef CONFIG_SUNDANCE + && sundance_probe(dev) +#endif +#ifdef CONFIG_STARFIRE + && starfire_probe(dev) +#endif +#ifdef CONFIG_MYSON803 + && myson803_probe(dev) +#endif +#ifdef CONFIG_INTEL_GIGE + && igige_probe(dev) +#endif #if defined(CONFIG_DEC_ELCP) && tulip_probe(dev) #endif