mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
00f3696f75
The COPS Appletalk support is very old, never said to actually work properly, and the firmware code for the devices are under a very suspect license. Remove it all to clear up the license issue, if it is still needed and actually used by anyone, we can add it back later once the license is cleared up. Reported-by: Prarit Bhargava <prarit@redhat.com> Cc: jschlst@samba.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Christoph Hellwig <hch@lst.de> Acked-by: Prarit Bhargava <prarit@redhat.com> Reviewed-by: Vitaly Kuznetsov <vkuznets@redhat.com> Link: https://lore.kernel.org/r/20230927090029.44704-2-gregkh@linuxfoundation.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
13 lines
455 B
C
13 lines
455 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 *ultra_probe(int unit);
|
|
struct net_device *wd_probe(int unit);
|
|
struct net_device *ne_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);
|