mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
52ff872055
In the previous commits of this series, we removed all asynchronous actions which were based on the tasklet handler - "tipc_k_signal()". So the moment has now come when we can completely remove the tasklet handler infrastructure. That is done with this commit. Signed-off-by: Ying Xue <ying.xue@windriver.com> Reviewed-by: Erik Hugne <erik.hugne@ericsson.com> Reviewed-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
373 B
Makefile
15 lines
373 B
Makefile
#
|
|
# Makefile for the Linux TIPC layer
|
|
#
|
|
|
|
obj-$(CONFIG_TIPC) := tipc.o
|
|
|
|
tipc-y += addr.o bcast.o bearer.o config.o \
|
|
core.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 log.o eth_media.o server.o
|
|
|
|
tipc-$(CONFIG_TIPC_MEDIA_IB) += ib_media.o
|
|
tipc-$(CONFIG_SYSCTL) += sysctl.o
|