026321c6d0
We rename struct tipc_server to struct tipc_topsrv. This reflect its now specialized role as topology server. Accoringly, we change or add function prefixes to make it clearer which functionality those belong to. There are no functional changes in this commit. Acked-by: Ying.Xue <ying.xue@windriver.com> Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
16 lines
454 B
Makefile
16 lines
454 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux TIPC layer
|
|
#
|
|
|
|
obj-$(CONFIG_TIPC) := tipc.o
|
|
|
|
tipc-y += addr.o bcast.o bearer.o \
|
|
core.o link.o discover.o msg.o \
|
|
name_distr.o subscr.o monitor.o name_table.o net.o \
|
|
netlink.o netlink_compat.o node.o socket.o eth_media.o \
|
|
topsrv.o socket.o group.o
|
|
|
|
tipc-$(CONFIG_TIPC_MEDIA_UDP) += udp_media.o
|
|
tipc-$(CONFIG_TIPC_MEDIA_IB) += ib_media.o
|
|
tipc-$(CONFIG_SYSCTL) += sysctl.o
|