From: Jeff Johnson Date: Fri, 24 May 2024 23:58:26 +0000 (-0700) Subject: of: of_test: add MODULE_DESCRIPTION() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a0fc1a053b7a212244ff109e44469b8deff280c5;p=linux.git of: of_test: add MODULE_DESCRIPTION() Fix the 'make W=1' warning: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/of/of_test.o Signed-off-by: Jeff Johnson Link: https://lore.kernel.org/r/20240524-md-of-of_test-v1-1-6ebd078d620f@quicinc.com Signed-off-by: Rob Herring (Arm) --- diff --git a/drivers/of/of_test.c b/drivers/of/of_test.c index a9301d293f014..c85a258bc6ae6 100644 --- a/drivers/of/of_test.c +++ b/drivers/of/of_test.c @@ -54,4 +54,5 @@ static struct kunit_suite of_dtb_suite = { kunit_test_suites( &of_dtb_suite, ); +MODULE_DESCRIPTION("KUnit tests for OF APIs"); MODULE_LICENSE("GPL");