]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
hte: tegra-194: add missing MODULE_DESCRIPTION() macro
authorJeff Johnson <quic_jjohnson@quicinc.com>
Mon, 3 Jun 2024 23:22:37 +0000 (16:22 -0700)
committerDipen Patel <dipenp@nvidia.com>
Wed, 19 Jun 2024 19:24:03 +0000 (12:24 -0700)
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 <quic_jjohnson@quicinc.com>
Acked-by: Dipen Patel <dipenp@nvidia.com>
Signed-off-by: Dipen Patel <dipenp@nvidia.com>
drivers/hte/hte-tegra194-test.c

index 8ee038ccf601dc61c54d8f23fa362cafb9fd137e..df631b5100d230b0eade7dc5d3b0078ee2538a07 100644 (file)
@@ -235,4 +235,5 @@ static struct platform_driver tegra_hte_test_driver = {
 module_platform_driver(tegra_hte_test_driver);
 
 MODULE_AUTHOR("Dipen Patel <dipenp@nvidia.com>");
+MODULE_DESCRIPTION("NVIDIA Tegra HTE (Hardware Timestamping Engine) test driver");
 MODULE_LICENSE("GPL");