617d3c7a50
Some of the comment blocks are floating in limbo between two functions, or between blocks of code. Delete the extra line feeds between any comment and its associated following block of code, to be consistent with the majority of the rest of the kernel. Also delete trailing newlines at EOF and fix a couple trivial typos in existing comments. This is a 100% cosmetic change with no runtime impact. We get rid of over 500 lines of non-code, and being blank line deletes, they won't even show up as noise in git blame. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
12 lines
295 B
Makefile
12 lines
295 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 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 log.o eth_media.o
|