summaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorXin Long <lucien.xin@gmail.com>2024-02-02 15:11:09 -0500
committerPaolo Abeni <pabeni@redhat.com>2024-02-06 13:47:36 +0100
commit06e6bc1b7aafa309c38d9d6623e8be3846647207 (patch)
tree0ee471ddb8730fd6e349a21d89128c4fd91dc2eb /net/tipc
parentb8189eebc0123093376d781bb934545ee5e4cf99 (diff)
downloadlinux-06e6bc1b7aafa309c38d9d6623e8be3846647207.tar.gz
linux-06e6bc1b7aafa309c38d9d6623e8be3846647207.tar.bz2
linux-06e6bc1b7aafa309c38d9d6623e8be3846647207.zip
tipc: rename the module name diag to tipc_diag
It is not appropriate for TIPC to use "diag" as its diag module name while the other protocols are using "$(protoname)_diag" like tcp_diag, udp_diag and sctp_diag etc. So this patch is to rename diag.ko to tipc_diag.ko in tipc's Makefile. Signed-off-by: Xin Long <lucien.xin@gmail.com> Reviewed-by: Tung Nguyen <tung.q.nguyen@dektech.com.au> Link: https://lore.kernel.org/r/d909edeef072da1810bd5869fdbbfe84411efdb2.1706904669.git.lucien.xin@gmail.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/Makefile b/net/tipc/Makefile
index ee49a9f1dd4f..18e1636aa036 100644
--- a/net/tipc/Makefile
+++ b/net/tipc/Makefile
@@ -18,5 +18,5 @@ tipc-$(CONFIG_TIPC_MEDIA_IB) += ib_media.o
tipc-$(CONFIG_SYSCTL) += sysctl.o
tipc-$(CONFIG_TIPC_CRYPTO) += crypto.o
-
-obj-$(CONFIG_TIPC_DIAG) += diag.o
+obj-$(CONFIG_TIPC_DIAG) += tipc_diag.o
+tipc_diag-y += diag.o