mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:46:16 +00:00
b63c755cb6
alloc_ltalkdev in net/appletalk/dev.c is dead since
commit 00f3696f75
("net: appletalk: remove cops support")
Removing it (and it's helper) leaves dev.c and if_ltalk.h empty;
remove them and the Makefile entry.
tun.c was including that if_ltalk.h but actually wanted
the uapi version for LTALK_ALEN, fix up the path.
Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
246 B
Makefile
11 lines
246 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the Linux AppleTalk layer.
|
|
#
|
|
|
|
obj-$(CONFIG_ATALK) += appletalk.o
|
|
|
|
appletalk-y := aarp.o ddp.o
|
|
appletalk-$(CONFIG_PROC_FS) += atalk_proc.o
|
|
appletalk-$(CONFIG_SYSCTL) += sysctl_net_atalk.o
|