mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
72bcad5393
The driver was merged in 1999 and has only ever seen treewide cleanups since then, with no indication whatsoever that anyone has actually had access to hardware for testing the patches. >From the information in the link below, it appears that the hardware is for some leased line system in Russia that has since been discontinued, and useless without any remote end to connect to. As the driver still feels like a Linux-2.2 era artifact today, it appears that the best way forward is to just delete it. Link: https://www.tms.ru/%D0%90%D0%B4%D0%B0%D0%BF%D1%82%D0%B5%D1%80_%D0%B4%D0%BB%D1%8F_%D0%B2%D1%8B%D0%B4%D0%B5%D0%BB%D0%B5%D0%BD%D0%BD%D1%8B%D1%85_%D0%BB%D0%B8%D0%BD%D0%B8%D0%B9_Granch_SBNI12-10 Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
20 lines
737 B
C
20 lines
737 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* A unified ethernet device probe. This is the easiest way to have every
|
|
* ethernet adaptor have the name "eth[0123...]".
|
|
*/
|
|
|
|
struct net_device *hp100_probe(int unit);
|
|
struct net_device *ultra_probe(int unit);
|
|
struct net_device *wd_probe(int unit);
|
|
struct net_device *ne_probe(int unit);
|
|
struct net_device *fmv18x_probe(int unit);
|
|
struct net_device *ni65_probe(int unit);
|
|
struct net_device *sonic_probe(int unit);
|
|
struct net_device *smc_init(int unit);
|
|
struct net_device *cs89x0_probe(int unit);
|
|
struct net_device *tc515_probe(int unit);
|
|
struct net_device *lance_probe(int unit);
|
|
struct net_device *cops_probe(int unit);
|
|
|
|
/* Fibre Channel adapters */
|
|
int iph5526_probe(struct net_device *dev);
|