From: Jeff Johnson Date: Tue, 2 Jul 2024 19:29:38 +0000 (-0700) Subject: sh: push-switch: Add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~66^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8fe76a1c2264a02155895cda9f97a6a5a9b97d91;p=thirdparty%2Fkernel%2Flinux.git sh: push-switch: Add missing MODULE_DESCRIPTION() macro Fixes the following warning when building allmodconfig with W=1 C=1: WARNING: modpost: missing MODULE_DESCRIPTION() in arch/sh/drivers/push-switch.o Signed-off-by: Jeff Johnson Reviewed-by: John Paul Adrian Glaubitz Link: https://lore.kernel.org/r/20240702-md-sh-arch-sh-drivers-v1-1-2c5d439a5479@quicinc.com Signed-off-by: John Paul Adrian Glaubitz --- diff --git a/arch/sh/drivers/push-switch.c b/arch/sh/drivers/push-switch.c index 362e4860bf52e..1dea43381b5ae 100644 --- a/arch/sh/drivers/push-switch.c +++ b/arch/sh/drivers/push-switch.c @@ -131,4 +131,5 @@ module_exit(switch_exit); MODULE_VERSION(DRV_VERSION); MODULE_AUTHOR("Paul Mundt"); +MODULE_DESCRIPTION("Generic push-switch framework"); MODULE_LICENSE("GPL v2");