diff options
author | Jeff Johnson <[email protected]> | 2024-06-13 14:18:48 -0700 |
---|---|---|
committer | Neil Armstrong <[email protected]> | 2024-06-24 10:08:53 +0200 |
commit | 5375986e16207e573c0493009d25b0c01f44e01d (patch) | |
tree | 50dca6474d99871510a116c90b540a207f0cf164 | |
parent | 2faaab64de0e89697e01f1a0c5d401ea74d52447 (diff) |
firmware: meson_sm: add missing MODULE_DESCRIPTION() macro
With ARCH=arm64, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/firmware/meson/meson_sm.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <[email protected]>
Reviewed-by: Neil Armstrong <[email protected]>
Link: https://lore.kernel.org/r/20240613-md-arm64-drivers-firmware-meson-v1-1-28e4138a8597@quicinc.com
Signed-off-by: Neil Armstrong <[email protected]>
-rw-r--r-- | drivers/firmware/meson/meson_sm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/firmware/meson/meson_sm.c b/drivers/firmware/meson/meson_sm.c index 5d7f62fe1d5f..f25a9746249b 100644 --- a/drivers/firmware/meson/meson_sm.c +++ b/drivers/firmware/meson/meson_sm.c @@ -340,4 +340,5 @@ static struct platform_driver meson_sm_driver = { }, }; module_platform_driver_probe(meson_sm_driver, meson_sm_probe); +MODULE_DESCRIPTION("Amlogic Secure Monitor driver"); MODULE_LICENSE("GPL v2"); |