[PATCH] revocable: fix missing module license and description

Danilo Krummrich posted 1 patch 2 weeks, 4 days ago
drivers/base/revocable_test.c | 3 +++
1 file changed, 3 insertions(+)
[PATCH] revocable: fix missing module license and description
Posted by Danilo Krummrich 2 weeks, 4 days ago
Fix missing MODULE_LICENSE() and MODULE_DESCRIPTION() in the revocable
Kunit test module.

Reported-by: Mark Brown <broonie@kernel.org>
Closes: https://lore.kernel.org/all/aW6GNvuQVNCUcoy-@sirena.org.uk/
Fixes: cd7693419bb5 ("revocable: Add Kunit test cases")
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
---
 drivers/base/revocable_test.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/base/revocable_test.c b/drivers/base/revocable_test.c
index 28d46ce1ba0c..873a44082b6c 100644
--- a/drivers/base/revocable_test.c
+++ b/drivers/base/revocable_test.c
@@ -137,3 +137,6 @@ static struct kunit_suite revocable_test_suite = {
 };
 
 kunit_test_suite(revocable_test_suite);
+
+MODULE_DESCRIPTION("KUnit tests for the revocable API");
+MODULE_LICENSE("GPL");

base-commit: 744905705113a6ab4c38127f18cc0d71594cfaec
-- 
2.52.0
Re: [PATCH] revocable: fix missing module license and description
Posted by Danilo Krummrich 2 weeks, 4 days ago
On Mon Jan 19, 2026 at 8:51 PM CET, Danilo Krummrich wrote:
> Fix missing MODULE_LICENSE() and MODULE_DESCRIPTION() in the revocable
> Kunit test module.
>
> Reported-by: Mark Brown <broonie@kernel.org>
> Closes: https://lore.kernel.org/all/aW6GNvuQVNCUcoy-@sirena.org.uk/
> Fixes: cd7693419bb5 ("revocable: Add Kunit test cases")
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>

Applied to driver-core-next, thanks!
Re: [PATCH] revocable: fix missing module license and description
Posted by Tzung-Bi Shih 2 weeks, 4 days ago
On Mon, Jan 19, 2026 at 08:51:15PM +0100, Danilo Krummrich wrote:
> Fix missing MODULE_LICENSE() and MODULE_DESCRIPTION() in the revocable
> Kunit test module.
> 
> Reported-by: Mark Brown <broonie@kernel.org>
> Closes: https://lore.kernel.org/all/aW6GNvuQVNCUcoy-@sirena.org.uk/
> Fixes: cd7693419bb5 ("revocable: Add Kunit test cases")
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>

Thanks for fixing,
Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>