[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20230530102532.56386-1-o-takashi@sakamocchi.jp>
Date: Tue, 30 May 2023 19:25:32 +0900
From: Takashi Sakamoto <o-takashi@...amocchi.jp>
To: linux1394-devel@...ts.sourceforge.net, linux-kernel@...r.kernel.org
Cc: Stephen Rothwell <sfr@...b.auug.org.au>
Subject: [PATCH] firewire: fix build failure due to missing module license
The added KUnit test has no MODULE_LICENSE even if built for tristate. It
brings build failure in linux-next integration.
This commit releases the test under GPL and fixes the bug.
Reported-by: Stephen Rothwell <sfr@...b.auug.org.au>
Closes: https://lore.kernel.org/lkml/20230530122450.1603af75@canb.auug.org.au/
Fixes: dc7c51638f46 ("firewire: add KUnit test to check layout of UAPI structures")
Signed-off-by: Takashi Sakamoto <o-takashi@...amocchi.jp>
---
drivers/firewire/uapi-test.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/firewire/uapi-test.c b/drivers/firewire/uapi-test.c
index c6ebf02e3d45..2fcbede4fab1 100644
--- a/drivers/firewire/uapi-test.c
+++ b/drivers/firewire/uapi-test.c
@@ -85,3 +85,5 @@ static struct kunit_suite structure_layout_test_suite = {
.test_cases = structure_layout_test_cases,
};
kunit_test_suite(structure_layout_test_suite);
+
+MODULE_LICENSE("GPL");
--
2.39.2
Powered by blists - more mailing lists