aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ntb
diff options
context:
space:
mode:
authorLogan Gunthorpe <logang@deltatee.com>2019-05-23 16:30:55 -0600
committerJon Mason <jdmason@kudzu.us>2019-06-13 09:02:02 -0400
commitd217e07b32a6750e44f529e0218898c024b2c637 (patch)
tree944d09e359e74899db38a9a4bdb4073be2a832a9 /drivers/ntb
parentNTB: Introduce functions to calculate multi-port resource index (diff)
downloadlinux-dev-d217e07b32a6750e44f529e0218898c024b2c637.tar.xz
linux-dev-d217e07b32a6750e44f529e0218898c024b2c637.zip
NTB: Rename ntb.c to support multiple source files in the module
The kbuild system does not support having multiple source files in a module if one of those source files has the same name as the module. Therefore, we must rename ntb.c to core.c, while the module remains ntb.ko. This is similar to the way the nvme modules are structured. Signed-off-by: Logan Gunthorpe <logang@deltatee.com> Cc: Dave Jiang <dave.jiang@intel.com> Cc: Allen Hubbe <allenbh@gmail.com> Signed-off-by: Jon Mason <jdmason@kudzu.us>
Diffstat (limited to 'drivers/ntb')
-rw-r--r--drivers/ntb/Makefile2
-rw-r--r--drivers/ntb/core.c (renamed from drivers/ntb/ntb.c)0
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ntb/Makefile b/drivers/ntb/Makefile
index 1921dec1949d..537226f8e78d 100644
--- a/drivers/ntb/Makefile
+++ b/drivers/ntb/Makefile
@@ -1,2 +1,4 @@
obj-$(CONFIG_NTB) += ntb.o hw/ test/
obj-$(CONFIG_NTB_TRANSPORT) += ntb_transport.o
+
+ntb-y := core.o
diff --git a/drivers/ntb/ntb.c b/drivers/ntb/core.c
index 2581ab724c34..2581ab724c34 100644
--- a/drivers/ntb/ntb.c
+++ b/drivers/ntb/core.c