From: Danilo Krummrich Date: Mon, 19 Jan 2026 19:51:15 +0000 (+0100) Subject: revocable: fix missing module license and description X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c259cd7ea3c9ad369c473ba2385d82e3432088b1;p=thirdparty%2Fkernel%2Flinux.git revocable: fix missing module license and description Fix missing MODULE_LICENSE() and MODULE_DESCRIPTION() in the revocable Kunit test module. Reported-by: Mark Brown Closes: https://lore.kernel.org/all/aW6GNvuQVNCUcoy-@sirena.org.uk/ Fixes: cd7693419bb5 ("revocable: Add Kunit test cases") Reviewed-by: Tzung-Bi Shih Link: https://patch.msgid.link/20260119195141.12843-1-dakr@kernel.org Signed-off-by: Danilo Krummrich --- 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");