aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2024-05-08 19:53:51 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2024-05-09 08:06:22 +0900
commit21151fd8f0ea5dcff27e8db25b65bf892d408bdc (patch)
tree9f39245bf5338cd94d3f1ea5135af9bc8ce9e7a9
parent5a5dc48083dae07e3079e4ded731388214729f64 (diff)
downloadlinux1394-for-next.tar.gz
firewire: obsolete usage of *-objs in Makefile for KUnit testfirewire-updates-6.10for-next
Nowadays *-objs list is just for user space programs. This commit obsolete the usage, and simplify Makefile for firewire KUnit tests since the tests are not composite objects. Link: https://lore.kernel.org/r/20240508105351.532693-1-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--drivers/firewire/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/firewire/Makefile b/drivers/firewire/Makefile
index 013e1f2641bd9..75c47d0469253 100644
--- a/drivers/firewire/Makefile
+++ b/drivers/firewire/Makefile
@@ -16,8 +16,5 @@ obj-$(CONFIG_FIREWIRE_NET) += firewire-net.o
obj-$(CONFIG_FIREWIRE_NOSY) += nosy.o
obj-$(CONFIG_PROVIDE_OHCI1394_DMA_INIT) += init_ohci1394_dma.o
-firewire-uapi-test-objs += uapi-test.o
-firewire-packet-serdes-test-objs += packet-serdes-test.o
-
-obj-$(CONFIG_FIREWIRE_KUNIT_UAPI_TEST) += firewire-uapi-test.o
-obj-$(CONFIG_FIREWIRE_KUNIT_PACKET_SERDES_TEST) += firewire-packet-serdes-test.o
+obj-$(CONFIG_FIREWIRE_KUNIT_UAPI_TEST) += uapi-test.o
+obj-$(CONFIG_FIREWIRE_KUNIT_PACKET_SERDES_TEST) += packet-serdes-test.o