* [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION()
@ 2024-04-25 12:56 Andy Shevchenko
2024-06-05 20:38 ` Andy Shevchenko
2024-06-11 13:46 ` Jeff Johnson
0 siblings, 2 replies; 6+ messages in thread
From: Andy Shevchenko @ 2024-04-25 12:56 UTC (permalink / raw)
To: dri-devel, linux-kernel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter, Andy Shevchenko
The modpost script is not happy
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/gpu/drm/drm_mipi_dbi.o
because there is a missing module description.
Add it to the module.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/gpu/drm/drm_mipi_dbi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/drm_mipi_dbi.c b/drivers/gpu/drm/drm_mipi_dbi.c
index daac649aabdb..ee6fa8185b13 100644
--- a/drivers/gpu/drm/drm_mipi_dbi.c
+++ b/drivers/gpu/drm/drm_mipi_dbi.c
@@ -1475,4 +1475,5 @@ EXPORT_SYMBOL(mipi_dbi_debugfs_init);
#endif
+MODULE_DESCRIPTION("MIPI Display Bus Interface (DBI) LCD controller support");
MODULE_LICENSE("GPL");
--
2.43.0.rc1.1336.g36b5255a03ac
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION()
2024-04-25 12:56 [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION() Andy Shevchenko
@ 2024-06-05 20:38 ` Andy Shevchenko
2024-06-11 13:34 ` Andy Shevchenko
2024-06-11 13:46 ` Jeff Johnson
1 sibling, 1 reply; 6+ messages in thread
From: Andy Shevchenko @ 2024-06-05 20:38 UTC (permalink / raw)
To: dri-devel, linux-kernel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
On Thu, Apr 25, 2024 at 03:56:26PM +0300, Andy Shevchenko wrote:
> The modpost script is not happy
>
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/gpu/drm/drm_mipi_dbi.o
>
> because there is a missing module description.
>
> Add it to the module.
Any comments on this?
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION()
2024-06-05 20:38 ` Andy Shevchenko
@ 2024-06-11 13:34 ` Andy Shevchenko
2024-06-11 13:42 ` Jeff Johnson
0 siblings, 1 reply; 6+ messages in thread
From: Andy Shevchenko @ 2024-06-11 13:34 UTC (permalink / raw)
To: dri-devel, linux-kernel, Jeff Johnson
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
On Wed, Jun 05, 2024 at 11:38:31PM +0300, Andy Shevchenko wrote:
> On Thu, Apr 25, 2024 at 03:56:26PM +0300, Andy Shevchenko wrote:
> > The modpost script is not happy
> >
> > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/gpu/drm/drm_mipi_dbi.o
> >
> > because there is a missing module description.
> >
> > Add it to the module.
>
> Any comments on this?
+Cc: Jeff, FYI
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION()
2024-06-11 13:34 ` Andy Shevchenko
@ 2024-06-11 13:42 ` Jeff Johnson
0 siblings, 0 replies; 6+ messages in thread
From: Jeff Johnson @ 2024-06-11 13:42 UTC (permalink / raw)
To: Andy Shevchenko, dri-devel, linux-kernel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
On 6/11/2024 6:34 AM, Andy Shevchenko wrote:
> On Wed, Jun 05, 2024 at 11:38:31PM +0300, Andy Shevchenko wrote:
>> On Thu, Apr 25, 2024 at 03:56:26PM +0300, Andy Shevchenko wrote:
>>> The modpost script is not happy
>>>
>>> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/gpu/drm/drm_mipi_dbi.o
>>>
>>> because there is a missing module description.
>>>
>>> Add it to the module.
>>
>> Any comments on this?
>
> +Cc: Jeff, FYI
>
I'm handling this plus others in:
https://lore.kernel.org/all/20240609-md-drivers-gpu-drm-v1-1-89e9a316d513@quicinc.com/
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION()
2024-04-25 12:56 [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION() Andy Shevchenko
2024-06-05 20:38 ` Andy Shevchenko
@ 2024-06-11 13:46 ` Jeff Johnson
2024-06-11 13:52 ` Andy Shevchenko
1 sibling, 1 reply; 6+ messages in thread
From: Jeff Johnson @ 2024-06-11 13:46 UTC (permalink / raw)
To: Andy Shevchenko, dri-devel, linux-kernel
Cc: Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
On 4/25/24 05:56, Andy Shevchenko wrote:
> The modpost script is not happy
>
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/gpu/drm/drm_mipi_dbi.o
>
> because there is a missing module description.
>
> Add it to the module.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> drivers/gpu/drm/drm_mipi_dbi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/drm_mipi_dbi.c b/drivers/gpu/drm/drm_mipi_dbi.c
> index daac649aabdb..ee6fa8185b13 100644
> --- a/drivers/gpu/drm/drm_mipi_dbi.c
> +++ b/drivers/gpu/drm/drm_mipi_dbi.c
> @@ -1475,4 +1475,5 @@ EXPORT_SYMBOL(mipi_dbi_debugfs_init);
>
> #endif
>
> +MODULE_DESCRIPTION("MIPI Display Bus Interface (DBI) LCD controller support");
> MODULE_LICENSE("GPL");
I'll remove this from my series
Reviewed-by: Jeff Johnson <quic_jjohnson@quicinc.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION()
2024-06-11 13:46 ` Jeff Johnson
@ 2024-06-11 13:52 ` Andy Shevchenko
0 siblings, 0 replies; 6+ messages in thread
From: Andy Shevchenko @ 2024-06-11 13:52 UTC (permalink / raw)
To: Jeff Johnson
Cc: dri-devel, linux-kernel, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Daniel Vetter
On Tue, Jun 11, 2024 at 06:46:12AM -0700, Jeff Johnson wrote:
> On 4/25/24 05:56, Andy Shevchenko wrote:
...
> I'll remove this from my series
No need, Maxime already applied, and I see
665415092eca ("drm: add missing MODULE_DESCRIPTION() macros")
> Reviewed-by: Jeff Johnson <quic_jjohnson@quicinc.com>
But thanks.
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-06-11 13:52 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-25 12:56 [PATCH v1 1/1] drm/mipi-dbi: Add missing MODULE_DESCRIPTION() Andy Shevchenko
2024-06-05 20:38 ` Andy Shevchenko
2024-06-11 13:34 ` Andy Shevchenko
2024-06-11 13:42 ` Jeff Johnson
2024-06-11 13:46 ` Jeff Johnson
2024-06-11 13:52 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®