* [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro
@ 2024-06-03 23:22 Jeff Johnson
2024-06-11 16:24 ` Dipen Patel
0 siblings, 1 reply; 5+ messages in thread
From: Jeff Johnson @ 2024-06-03 23:22 UTC (permalink / raw)
To: Dipen Patel, Thierry Reding, Jonathan Hunter
Cc: timestamp, linux-tegra, linux-kernel, kernel-janitors,
Jeff Johnson
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>
---
drivers/hte/hte-tegra194-test.c | 1 +
1 file changed, 1 insertion(+)
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");
---
base-commit: a693b9c95abd4947c2d06e05733de5d470ab6586
change-id: 20240603-md-hte-tegra194-test-668212d1420f
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro
2024-06-03 23:22 [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro Jeff Johnson
@ 2024-06-11 16:24 ` Dipen Patel
2024-06-23 17:53 ` Jeff Johnson
0 siblings, 1 reply; 5+ messages in thread
From: Dipen Patel @ 2024-06-11 16:24 UTC (permalink / raw)
To: Jeff Johnson, Thierry Reding, Jonathan Hunter
Cc: timestamp, linux-tegra, linux-kernel, kernel-janitors
On 6/3/24 4:22 PM, Jeff Johnson wrote:
> 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>
> ---
> drivers/hte/hte-tegra194-test.c | 1 +
> 1 file changed, 1 insertion(+)
>
> 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");
>
> ---
> base-commit: a693b9c95abd4947c2d06e05733de5d470ab6586
> change-id: 20240603-md-hte-tegra194-test-668212d1420f
>
Acked-by: Dipen Patel <dipenp@nvidia.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro
2024-06-11 16:24 ` Dipen Patel
@ 2024-06-23 17:53 ` Jeff Johnson
2024-06-25 21:05 ` Dipen Patel
0 siblings, 1 reply; 5+ messages in thread
From: Jeff Johnson @ 2024-06-23 17:53 UTC (permalink / raw)
To: Dipen Patel, Thierry Reding, Jonathan Hunter
Cc: timestamp, linux-tegra, linux-kernel, kernel-janitors
On 6/11/2024 9:24 AM, Dipen Patel wrote:
> On 6/3/24 4:22 PM, Jeff Johnson wrote:
>> 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>
>> ---
>> drivers/hte/hte-tegra194-test.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> 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");
>>
>> ---
>> base-commit: a693b9c95abd4947c2d06e05733de5d470ab6586
>> change-id: 20240603-md-hte-tegra194-test-668212d1420f
>>
> Acked-by: Dipen Patel <dipenp@nvidia.com>
Following up to see if anything else is needed from me.
Hoping to see this in linux-next :)
/jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro
2024-06-23 17:53 ` Jeff Johnson
@ 2024-06-25 21:05 ` Dipen Patel
2024-06-25 22:30 ` Jeff Johnson
0 siblings, 1 reply; 5+ messages in thread
From: Dipen Patel @ 2024-06-25 21:05 UTC (permalink / raw)
To: Jeff Johnson, Thierry Reding, Jonathan Hunter
Cc: timestamp, linux-tegra, linux-kernel, kernel-janitors
On 6/23/24 10:53 AM, Jeff Johnson wrote:
> On 6/11/2024 9:24 AM, Dipen Patel wrote:
>> On 6/3/24 4:22 PM, Jeff Johnson wrote:
>>> 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>
>>> ---
>>> drivers/hte/hte-tegra194-test.c | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> 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");
>>>
>>> ---
>>> base-commit: a693b9c95abd4947c2d06e05733de5d470ab6586
>>> change-id: 20240603-md-hte-tegra194-test-668212d1420f
>>>
>> Acked-by: Dipen Patel <dipenp@nvidia.com>
>
> Following up to see if anything else is needed from me.
> Hoping to see this in linux-next :)
Its in linux-next[1].
[1].
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/drivers/hte/hte-tegra194-test.c?h=next-20240625&id=9e4259716f60c96c069a38e826884ad783dc4eb4
>
> /jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro
2024-06-25 21:05 ` Dipen Patel
@ 2024-06-25 22:30 ` Jeff Johnson
0 siblings, 0 replies; 5+ messages in thread
From: Jeff Johnson @ 2024-06-25 22:30 UTC (permalink / raw)
To: Dipen Patel, Thierry Reding, Jonathan Hunter
Cc: timestamp, linux-tegra, linux-kernel, kernel-janitors
On 6/25/2024 2:05 PM, Dipen Patel wrote:
> On 6/23/24 10:53 AM, Jeff Johnson wrote:
>> Following up to see if anything else is needed from me.
>> Hoping to see this in linux-next :)
>
> Its in linux-next[1].
>
> [1].
> https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/drivers/hte/hte-tegra194-test.c?h=next-20240625&id=9e4259716f60c96c069a38e826884ad783dc4eb4
thanks,
pulled it into my verification workflow :)
/jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-06-25 22:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 23:22 [PATCH] hte: tegra-194: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-11 16:24 ` Dipen Patel
2024-06-23 17:53 ` Jeff Johnson
2024-06-25 21:05 ` Dipen Patel
2024-06-25 22:30 ` Jeff Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox