diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-05-24 16:58:26 -0700 |
---|---|---|
committer | Rob Herring (Arm) <robh@kernel.org> | 2024-05-28 12:10:00 -0500 |
commit | a0fc1a053b7a212244ff109e44469b8deff280c5 (patch) | |
tree | 95c96e5c4ffb469bb2aa99492e6363f30fcfae2b | |
parent | 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 (diff) | |
download | lwn-a0fc1a053b7a212244ff109e44469b8deff280c5.tar.gz lwn-a0fc1a053b7a212244ff109e44469b8deff280c5.zip |
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 <quic_jjohnson@quicinc.com>
Link: https://lore.kernel.org/r/20240524-md-of-of_test-v1-1-6ebd078d620f@quicinc.com
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
-rw-r--r-- | drivers/of/of_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/of/of_test.c b/drivers/of/of_test.c index a9301d293f01..c85a258bc6ae 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"); |