From: Jeff Johnson Date: Mon, 3 Jun 2024 23:22:37 +0000 (-0700) Subject: hte: tegra-194: add missing MODULE_DESCRIPTION() macro X-Git-Tag: v6.11-rc1~144^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9e4259716f60c96c069a38e826884ad783dc4eb4;p=thirdparty%2Fkernel%2Flinux.git hte: tegra-194: add missing MODULE_DESCRIPTION() macro make allmodconfig && make W=1 C=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/hte/hte-tegra194-test.o Add the missing invocation of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson Acked-by: Dipen Patel Signed-off-by: Dipen Patel --- diff --git a/drivers/hte/hte-tegra194-test.c b/drivers/hte/hte-tegra194-test.c index 8ee038ccf601d..df631b5100d23 100644 --- a/drivers/hte/hte-tegra194-test.c +++ b/drivers/hte/hte-tegra194-test.c @@ -235,4 +235,5 @@ static struct platform_driver tegra_hte_test_driver = { module_platform_driver(tegra_hte_test_driver); MODULE_AUTHOR("Dipen Patel "); +MODULE_DESCRIPTION("NVIDIA Tegra HTE (Hardware Timestamping Engine) test driver"); MODULE_LICENSE("GPL");