projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a5dc48
)
firewire: obsolete usage of *-objs in Makefile for KUnit test
author
Takashi Sakamoto
<o-takashi@sakamocchi.jp>
Wed, 8 May 2024 10:53:51 +0000
(19:53 +0900)
committer
Takashi Sakamoto
<o-takashi@sakamocchi.jp>
Wed, 8 May 2024 23:06:22 +0000
(08:06 +0900)
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>
drivers/firewire/Makefile
patch
|
blob
|
history
diff --git
a/drivers/firewire/Makefile
b/drivers/firewire/Makefile
index 013e1f2641bd9a9178a61a5a4298116bf9fa09d5..75c47d0469253e9ecad1a83bb92e3c307ba5adf3 100644
(file)
--- 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