* [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
@ 2024-06-15 21:01 Jeff Johnson
2024-06-29 3:14 ` Jeff Johnson
0 siblings, 1 reply; 7+ messages in thread
From: Jeff Johnson @ 2024-06-15 21:01 UTC (permalink / raw)
To: David Airlie; +Cc: dri-devel, linux-kernel, kernel-janitors, Jeff Johnson
With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/char/agp/uninorth-agp.o
Add the missing invocation of the MODULE_DESCRIPTION() macro.
Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
---
drivers/char/agp/uninorth-agp.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/char/agp/uninorth-agp.c b/drivers/char/agp/uninorth-agp.c
index 84411b13c49f..b8d7115b8c9e 100644
--- a/drivers/char/agp/uninorth-agp.c
+++ b/drivers/char/agp/uninorth-agp.c
@@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
"\t\tDefault: " DEFAULT_APERTURE_STRING "M");
MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
+MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
MODULE_LICENSE("GPL");
---
base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
2024-06-15 21:01 [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro Jeff Johnson
@ 2024-06-29 3:14 ` Jeff Johnson
2024-07-11 18:19 ` Jeff Johnson
0 siblings, 1 reply; 7+ messages in thread
From: Jeff Johnson @ 2024-06-29 3:14 UTC (permalink / raw)
To: David Airlie; +Cc: dri-devel, linux-kernel, kernel-janitors
On 6/15/2024 2:01 PM, Jeff Johnson wrote:
> With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/char/agp/uninorth-agp.o
>
> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>
> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> ---
> drivers/char/agp/uninorth-agp.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/char/agp/uninorth-agp.c b/drivers/char/agp/uninorth-agp.c
> index 84411b13c49f..b8d7115b8c9e 100644
> --- a/drivers/char/agp/uninorth-agp.c
> +++ b/drivers/char/agp/uninorth-agp.c
> @@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
> "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
>
> MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
> +MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
> MODULE_LICENSE("GPL");
>
> ---
> base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
> change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
Following up to see if anything else is needed from me. Hoping to see this in
linux-next so I can remove it from my tracking spreadsheet :)
/jeff
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
2024-06-29 3:14 ` Jeff Johnson
@ 2024-07-11 18:19 ` Jeff Johnson
2024-07-11 19:27 ` Jeffrey Hugo
0 siblings, 1 reply; 7+ messages in thread
From: Jeff Johnson @ 2024-07-11 18:19 UTC (permalink / raw)
To: David Airlie, Greg Kroah-Hartman; +Cc: dri-devel, linux-kernel, kernel-janitors
On 6/28/24 20:14, Jeff Johnson wrote:
> On 6/15/2024 2:01 PM, Jeff Johnson wrote:
>> With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
>> WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/char/agp/uninorth-agp.o
>>
>> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>>
>> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
>> ---
>> drivers/char/agp/uninorth-agp.c | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/char/agp/uninorth-agp.c b/drivers/char/agp/uninorth-agp.c
>> index 84411b13c49f..b8d7115b8c9e 100644
>> --- a/drivers/char/agp/uninorth-agp.c
>> +++ b/drivers/char/agp/uninorth-agp.c
>> @@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
>> "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
>>
>> MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
>> +MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
>> MODULE_LICENSE("GPL");
>>
>> ---
>> base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
>> change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
>
> Following up to see if anything else is needed from me. Hoping to see this in
> linux-next so I can remove it from my tracking spreadsheet :)
I still don't see this in linux-next.
Adding Greg KH since he's picked up many of these fixes.
Hope to have all of these warnings fixed tree-wide in 6.11.
/jeff
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
2024-07-11 18:19 ` Jeff Johnson
@ 2024-07-11 19:27 ` Jeffrey Hugo
2024-07-12 7:31 ` Greg Kroah-Hartman
2024-07-15 8:34 ` Daniel Vetter
0 siblings, 2 replies; 7+ messages in thread
From: Jeffrey Hugo @ 2024-07-11 19:27 UTC (permalink / raw)
To: Jeff Johnson, David Airlie, Greg Kroah-Hartman
Cc: dri-devel, linux-kernel, kernel-janitors
On 7/11/2024 12:19 PM, Jeff Johnson wrote:
> On 6/28/24 20:14, Jeff Johnson wrote:
>> On 6/15/2024 2:01 PM, Jeff Johnson wrote:
>>> With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
>>> WARNING: modpost: missing MODULE_DESCRIPTION() in
>>> drivers/char/agp/uninorth-agp.o
>>>
>>> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>>>
>>> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
>>> ---
>>> drivers/char/agp/uninorth-agp.c | 1 +
>>> 1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drivers/char/agp/uninorth-agp.c
>>> b/drivers/char/agp/uninorth-agp.c
>>> index 84411b13c49f..b8d7115b8c9e 100644
>>> --- a/drivers/char/agp/uninorth-agp.c
>>> +++ b/drivers/char/agp/uninorth-agp.c
>>> @@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
>>> "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
>>> MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
>>> +MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
>>> MODULE_LICENSE("GPL");
>>>
>>> ---
>>> base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
>>> change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
>>
>> Following up to see if anything else is needed from me. Hoping to see
>> this in
>> linux-next so I can remove it from my tracking spreadsheet :)
>
> I still don't see this in linux-next.
> Adding Greg KH since he's picked up many of these fixes.
> Hope to have all of these warnings fixed tree-wide in 6.11.
Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Dave, this seems like a trivial fix that is stuck, but normally routed
through DRM. I hope I'm not over stepping, but I think I'll drop this
in drm-misc-next on the 19th if there isn't any other activity.
-Jeff
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
2024-07-11 19:27 ` Jeffrey Hugo
@ 2024-07-12 7:31 ` Greg Kroah-Hartman
2024-07-12 14:22 ` Jeffrey Hugo
2024-07-15 8:34 ` Daniel Vetter
1 sibling, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2024-07-12 7:31 UTC (permalink / raw)
To: Jeffrey Hugo
Cc: Jeff Johnson, David Airlie, dri-devel, linux-kernel,
kernel-janitors
On Thu, Jul 11, 2024 at 01:27:23PM -0600, Jeffrey Hugo wrote:
> On 7/11/2024 12:19 PM, Jeff Johnson wrote:
> > On 6/28/24 20:14, Jeff Johnson wrote:
> > > On 6/15/2024 2:01 PM, Jeff Johnson wrote:
> > > > With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
> > > > WARNING: modpost: missing MODULE_DESCRIPTION() in
> > > > drivers/char/agp/uninorth-agp.o
> > > >
> > > > Add the missing invocation of the MODULE_DESCRIPTION() macro.
> > > >
> > > > Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> > > > ---
> > > > drivers/char/agp/uninorth-agp.c | 1 +
> > > > 1 file changed, 1 insertion(+)
> > > >
> > > > diff --git a/drivers/char/agp/uninorth-agp.c
> > > > b/drivers/char/agp/uninorth-agp.c
> > > > index 84411b13c49f..b8d7115b8c9e 100644
> > > > --- a/drivers/char/agp/uninorth-agp.c
> > > > +++ b/drivers/char/agp/uninorth-agp.c
> > > > @@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
> > > > "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
> > > > MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
> > > > +MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
> > > > MODULE_LICENSE("GPL");
> > > >
> > > > ---
> > > > base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
> > > > change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
> > >
> > > Following up to see if anything else is needed from me. Hoping to
> > > see this in
> > > linux-next so I can remove it from my tracking spreadsheet :)
> >
> > I still don't see this in linux-next.
> > Adding Greg KH since he's picked up many of these fixes.
> > Hope to have all of these warnings fixed tree-wide in 6.11.
>
> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
>
> Dave, this seems like a trivial fix that is stuck, but normally routed
> through DRM. I hope I'm not over stepping, but I think I'll drop this in
> drm-misc-next on the 19th if there isn't any other activity.
I can take it now, otherwise you will miss the 6.11-rc1 merge window.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
2024-07-12 7:31 ` Greg Kroah-Hartman
@ 2024-07-12 14:22 ` Jeffrey Hugo
0 siblings, 0 replies; 7+ messages in thread
From: Jeffrey Hugo @ 2024-07-12 14:22 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Jeff Johnson, David Airlie, dri-devel, linux-kernel,
kernel-janitors
On 7/12/2024 1:31 AM, Greg Kroah-Hartman wrote:
> On Thu, Jul 11, 2024 at 01:27:23PM -0600, Jeffrey Hugo wrote:
>> On 7/11/2024 12:19 PM, Jeff Johnson wrote:
>>> On 6/28/24 20:14, Jeff Johnson wrote:
>>>> On 6/15/2024 2:01 PM, Jeff Johnson wrote:
>>>>> With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
>>>>> WARNING: modpost: missing MODULE_DESCRIPTION() in
>>>>> drivers/char/agp/uninorth-agp.o
>>>>>
>>>>> Add the missing invocation of the MODULE_DESCRIPTION() macro.
>>>>>
>>>>> Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
>>>>> ---
>>>>> drivers/char/agp/uninorth-agp.c | 1 +
>>>>> 1 file changed, 1 insertion(+)
>>>>>
>>>>> diff --git a/drivers/char/agp/uninorth-agp.c
>>>>> b/drivers/char/agp/uninorth-agp.c
>>>>> index 84411b13c49f..b8d7115b8c9e 100644
>>>>> --- a/drivers/char/agp/uninorth-agp.c
>>>>> +++ b/drivers/char/agp/uninorth-agp.c
>>>>> @@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
>>>>> "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
>>>>> MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
>>>>> +MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
>>>>> MODULE_LICENSE("GPL");
>>>>>
>>>>> ---
>>>>> base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
>>>>> change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
>>>>
>>>> Following up to see if anything else is needed from me. Hoping to
>>>> see this in
>>>> linux-next so I can remove it from my tracking spreadsheet :)
>>>
>>> I still don't see this in linux-next.
>>> Adding Greg KH since he's picked up many of these fixes.
>>> Hope to have all of these warnings fixed tree-wide in 6.11.
>>
>> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
>>
>> Dave, this seems like a trivial fix that is stuck, but normally routed
>> through DRM. I hope I'm not over stepping, but I think I'll drop this in
>> drm-misc-next on the 19th if there isn't any other activity.
>
> I can take it now, otherwise you will miss the 6.11-rc1 merge window.
Works for me. Thanks Greg!
-Jeff
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro
2024-07-11 19:27 ` Jeffrey Hugo
2024-07-12 7:31 ` Greg Kroah-Hartman
@ 2024-07-15 8:34 ` Daniel Vetter
1 sibling, 0 replies; 7+ messages in thread
From: Daniel Vetter @ 2024-07-15 8:34 UTC (permalink / raw)
To: Jeffrey Hugo
Cc: Jeff Johnson, David Airlie, Greg Kroah-Hartman, dri-devel,
linux-kernel, kernel-janitors
On Thu, Jul 11, 2024 at 01:27:23PM -0600, Jeffrey Hugo wrote:
> On 7/11/2024 12:19 PM, Jeff Johnson wrote:
> > On 6/28/24 20:14, Jeff Johnson wrote:
> > > On 6/15/2024 2:01 PM, Jeff Johnson wrote:
> > > > With ARCH=powerpc, make allmodconfig && make W=1 C=1 reports:
> > > > WARNING: modpost: missing MODULE_DESCRIPTION() in
> > > > drivers/char/agp/uninorth-agp.o
> > > >
> > > > Add the missing invocation of the MODULE_DESCRIPTION() macro.
> > > >
> > > > Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
> > > > ---
> > > > drivers/char/agp/uninorth-agp.c | 1 +
> > > > 1 file changed, 1 insertion(+)
> > > >
> > > > diff --git a/drivers/char/agp/uninorth-agp.c
> > > > b/drivers/char/agp/uninorth-agp.c
> > > > index 84411b13c49f..b8d7115b8c9e 100644
> > > > --- a/drivers/char/agp/uninorth-agp.c
> > > > +++ b/drivers/char/agp/uninorth-agp.c
> > > > @@ -726,4 +726,5 @@ MODULE_PARM_DESC(aperture,
> > > > "\t\tDefault: " DEFAULT_APERTURE_STRING "M");
> > > > MODULE_AUTHOR("Ben Herrenschmidt & Paul Mackerras");
> > > > +MODULE_DESCRIPTION("Apple UniNorth & U3 AGP support");
> > > > MODULE_LICENSE("GPL");
> > > >
> > > > ---
> > > > base-commit: 83a7eefedc9b56fe7bfeff13b6c7356688ffa670
> > > > change-id: 20240615-md-powerpc-drivers-char-agp-db644db58c24
> > >
> > > Following up to see if anything else is needed from me. Hoping to
> > > see this in
> > > linux-next so I can remove it from my tracking spreadsheet :)
> >
> > I still don't see this in linux-next.
> > Adding Greg KH since he's picked up many of these fixes.
> > Hope to have all of these warnings fixed tree-wide in 6.11.
>
> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
>
> Dave, this seems like a trivial fix that is stuck, but normally routed
> through DRM. I hope I'm not over stepping, but I think I'll drop this in
> drm-misc-next on the 19th if there isn't any other activity.
Committers applying patches is very much welcome and encouraged.
-Sima
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-07-15 8:34 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-15 21:01 [PATCH] agp: uninorth: add missing MODULE_DESCRIPTION() macro Jeff Johnson
2024-06-29 3:14 ` Jeff Johnson
2024-07-11 18:19 ` Jeff Johnson
2024-07-11 19:27 ` Jeffrey Hugo
2024-07-12 7:31 ` Greg Kroah-Hartman
2024-07-12 14:22 ` Jeffrey Hugo
2024-07-15 8:34 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox