diff options
author | Jeff Johnson <quic_jjohnson@quicinc.com> | 2024-06-03 16:22:37 -0700 |
---|---|---|
committer | Dipen Patel <dipenp@nvidia.com> | 2024-06-19 12:24:03 -0700 |
commit | 9e4259716f60c96c069a38e826884ad783dc4eb4 (patch) | |
tree | c7716376b0ffa319dad44314f0780e19ca18562b /drivers/hte | |
parent | 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 (diff) |
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 <quic_jjohnson@quicinc.com>
Acked-by: Dipen Patel <dipenp@nvidia.com>
Signed-off-by: Dipen Patel <dipenp@nvidia.com>
Diffstat (limited to 'drivers/hte')
-rw-r--r-- | drivers/hte/hte-tegra194-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hte/hte-tegra194-test.c b/drivers/hte/hte-tegra194-test.c index 8ee038ccf601..df631b5100d2 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 <dipenp@nvidia.com>"); +MODULE_DESCRIPTION("NVIDIA Tegra HTE (Hardware Timestamping Engine) test driver"); MODULE_LICENSE("GPL"); |