mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
51f98a8d70
Eliminates routines, data structures, and files that were intended to allows TIPC to support a network containing multiple zones. Currently, TIPC supports only networks consisting of a single cluster within a single zone, so this code is unnecessary. Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
331 B
Makefile
14 lines
331 B
Makefile
#
|
|
# Makefile for the Linux TIPC layer
|
|
#
|
|
|
|
obj-$(CONFIG_TIPC) := tipc.o
|
|
|
|
tipc-y += addr.o bcast.o bearer.o config.o cluster.o \
|
|
core.o handler.o link.o discover.o msg.o \
|
|
name_distr.o subscr.o name_table.o net.o \
|
|
netlink.o node.o node_subscr.o port.o ref.o \
|
|
socket.o user_reg.o dbg.o eth_media.o
|
|
|
|
# End of file
|