mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL")
@ 2017-11-26  2:53 Daniel Axtens
  2018-02-23 10:55 ` Miguel Ojeda
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Axtens @ 2017-11-26  2:53 UTC (permalink / raw)
  To: paul.burton, miguel.ojeda.sandonis, linux-kernel; +Cc: Daniel Axtens

This matches the header at the top of the file and squashes:

WARNING: modpost: missing MODULE_LICENSE() in drivers/auxdisplay/img-ascii-lcd.o
see include/linux/module.h for more information

Signed-off-by: Daniel Axtens <dja@axtens.net>
---
 drivers/auxdisplay/img-ascii-lcd.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c
index db040b378224..7315ffa79537 100644
--- a/drivers/auxdisplay/img-ascii-lcd.c
+++ b/drivers/auxdisplay/img-ascii-lcd.c
@@ -441,3 +441,5 @@ static struct platform_driver img_ascii_lcd_driver = {
 	.remove	= img_ascii_lcd_remove,
 };
 module_platform_driver(img_ascii_lcd_driver);
+
+MODULE_LICENSE("GPL");
-- 
2.11.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL")
  2017-11-26  2:53 [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL") Daniel Axtens
@ 2018-02-23 10:55 ` Miguel Ojeda
  2018-02-24 15:08   ` Daniel Axtens
  0 siblings, 1 reply; 5+ messages in thread
From: Miguel Ojeda @ 2018-02-23 10:55 UTC (permalink / raw)
  To: Daniel Axtens; +Cc: Paul Burton, linux-kernel

Hi Daniel,

On Sun, Nov 26, 2017 at 3:53 AM, Daniel Axtens <dja@axtens.net> wrote:
> This matches the header at the top of the file and squashes:
>
> WARNING: modpost: missing MODULE_LICENSE() in drivers/auxdisplay/img-ascii-lcd.o
> see include/linux/module.h for more information
>
> Signed-off-by: Daniel Axtens <dja@axtens.net>
> ---
>  drivers/auxdisplay/img-ascii-lcd.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c
> index db040b378224..7315ffa79537 100644
> --- a/drivers/auxdisplay/img-ascii-lcd.c
> +++ b/drivers/auxdisplay/img-ascii-lcd.c
> @@ -441,3 +441,5 @@ static struct platform_driver img_ascii_lcd_driver = {
>         .remove = img_ascii_lcd_remove,
>  };
>  module_platform_driver(img_ascii_lcd_driver);
> +
> +MODULE_LICENSE("GPL");

This was submitted just a few days before yours, and now it is in at
09c479f7f1fbfaf848e5813996793966cd50be81
("auxdisplay: img-ascii-lcd: add missing
MODULE_DESCRIPTION/AUTHOR/LICENSE").

In any case, thanks for the patch! :-)

Cheers,
Miguel

> --
> 2.11.0
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL")
  2018-02-23 10:55 ` Miguel Ojeda
@ 2018-02-24 15:08   ` Daniel Axtens
  2018-02-25 12:25     ` Miguel Ojeda
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Axtens @ 2018-02-24 15:08 UTC (permalink / raw)
  To: Miguel Ojeda; +Cc: Paul Burton, linux-kernel

Miguel Ojeda <miguel.ojeda.sandonis@gmail.com> writes:

> Hi Daniel,
>
> On Sun, Nov 26, 2017 at 3:53 AM, Daniel Axtens <dja@axtens.net> wrote:
>> This matches the header at the top of the file and squashes:
>>
>> WARNING: modpost: missing MODULE_LICENSE() in drivers/auxdisplay/img-ascii-lcd.o
>> see include/linux/module.h for more information
>>
>> Signed-off-by: Daniel Axtens <dja@axtens.net>
>> ---
>>  drivers/auxdisplay/img-ascii-lcd.c | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c
>> index db040b378224..7315ffa79537 100644
>> --- a/drivers/auxdisplay/img-ascii-lcd.c
>> +++ b/drivers/auxdisplay/img-ascii-lcd.c
>> @@ -441,3 +441,5 @@ static struct platform_driver img_ascii_lcd_driver = {
>>         .remove = img_ascii_lcd_remove,
>>  };
>>  module_platform_driver(img_ascii_lcd_driver);
>> +
>> +MODULE_LICENSE("GPL");
>
> This was submitted just a few days before yours, and now it is in at
> 09c479f7f1fbfaf848e5813996793966cd50be81
> ("auxdisplay: img-ascii-lcd: add missing
> MODULE_DESCRIPTION/AUTHOR/LICENSE").
>
> In any case, thanks for the patch! :-)

Thanks!

I was submitting the patches in part because I was considering
submitting a change that made the license warning a fatal error and I
wanted to make sure I had covered the obvious missing ones first.

Would making the warning fatal impact on you?

Regards,
Daniel
>
> Cheers,
> Miguel
>
>> --
>> 2.11.0
>>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL")
  2018-02-24 15:08   ` Daniel Axtens
@ 2018-02-25 12:25     ` Miguel Ojeda
  2018-02-25 12:40       ` Miguel Ojeda
  0 siblings, 1 reply; 5+ messages in thread
From: Miguel Ojeda @ 2018-02-25 12:25 UTC (permalink / raw)
  To: Daniel Axtens; +Cc: Paul Burton, linux-kernel

On Sat, Feb 24, 2018 at 4:08 PM, Daniel Axtens <dja@axtens.net> wrote:
> Miguel Ojeda <miguel.ojeda.sandonis@gmail.com> writes:
>
>> Hi Daniel,
>>
>> On Sun, Nov 26, 2017 at 3:53 AM, Daniel Axtens <dja@axtens.net> wrote:
>>> This matches the header at the top of the file and squashes:
>>>
>>> WARNING: modpost: missing MODULE_LICENSE() in drivers/auxdisplay/img-ascii-lcd.o
>>> see include/linux/module.h for more information
>>>
>>> Signed-off-by: Daniel Axtens <dja@axtens.net>
>>> ---
>>>  drivers/auxdisplay/img-ascii-lcd.c | 2 ++
>>>  1 file changed, 2 insertions(+)
>>>
>>> diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c
>>> index db040b378224..7315ffa79537 100644
>>> --- a/drivers/auxdisplay/img-ascii-lcd.c
>>> +++ b/drivers/auxdisplay/img-ascii-lcd.c
>>> @@ -441,3 +441,5 @@ static struct platform_driver img_ascii_lcd_driver = {
>>>         .remove = img_ascii_lcd_remove,
>>>  };
>>>  module_platform_driver(img_ascii_lcd_driver);
>>> +
>>> +MODULE_LICENSE("GPL");
>>
>> This was submitted just a few days before yours, and now it is in at
>> 09c479f7f1fbfaf848e5813996793966cd50be81
>> ("auxdisplay: img-ascii-lcd: add missing
>> MODULE_DESCRIPTION/AUTHOR/LICENSE").
>>
>> In any case, thanks for the patch! :-)
>
> Thanks!
>
> I was submitting the patches in part because I was considering
> submitting a change that made the license warning a fatal error and I
> wanted to make sure I had covered the obvious missing ones first.
>
> Would making the warning fatal impact on you?

drivers/auxdisplay/arm-charlcd.c is missing MODULE_LICENSE. I will
send the patch for that which should be in for 4.17.

Apart from that one, the rest of drivers/auxdisplay is fine.

Cheers,
Miguel

>
> Regards,
> Daniel
>>
>> Cheers,
>> Miguel
>>
>>> --
>>> 2.11.0
>>>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL")
  2018-02-25 12:25     ` Miguel Ojeda
@ 2018-02-25 12:40       ` Miguel Ojeda
  0 siblings, 0 replies; 5+ messages in thread
From: Miguel Ojeda @ 2018-02-25 12:40 UTC (permalink / raw)
  To: Daniel Axtens; +Cc: Paul Burton, linux-kernel

On Sun, Feb 25, 2018 at 1:25 PM, Miguel Ojeda
<miguel.ojeda.sandonis@gmail.com> wrote:
> On Sat, Feb 24, 2018 at 4:08 PM, Daniel Axtens <dja@axtens.net> wrote:
>> Miguel Ojeda <miguel.ojeda.sandonis@gmail.com> writes:
>>
>>> Hi Daniel,
>>>
>>> On Sun, Nov 26, 2017 at 3:53 AM, Daniel Axtens <dja@axtens.net> wrote:
>>>> This matches the header at the top of the file and squashes:
>>>>
>>>> WARNING: modpost: missing MODULE_LICENSE() in drivers/auxdisplay/img-ascii-lcd.o
>>>> see include/linux/module.h for more information
>>>>
>>>> Signed-off-by: Daniel Axtens <dja@axtens.net>
>>>> ---
>>>>  drivers/auxdisplay/img-ascii-lcd.c | 2 ++
>>>>  1 file changed, 2 insertions(+)
>>>>
>>>> diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c
>>>> index db040b378224..7315ffa79537 100644
>>>> --- a/drivers/auxdisplay/img-ascii-lcd.c
>>>> +++ b/drivers/auxdisplay/img-ascii-lcd.c
>>>> @@ -441,3 +441,5 @@ static struct platform_driver img_ascii_lcd_driver = {
>>>>         .remove = img_ascii_lcd_remove,
>>>>  };
>>>>  module_platform_driver(img_ascii_lcd_driver);
>>>> +
>>>> +MODULE_LICENSE("GPL");
>>>
>>> This was submitted just a few days before yours, and now it is in at
>>> 09c479f7f1fbfaf848e5813996793966cd50be81
>>> ("auxdisplay: img-ascii-lcd: add missing
>>> MODULE_DESCRIPTION/AUTHOR/LICENSE").
>>>
>>> In any case, thanks for the patch! :-)
>>
>> Thanks!
>>
>> I was submitting the patches in part because I was considering
>> submitting a change that made the license warning a fatal error and I
>> wanted to make sure I had covered the obvious missing ones first.
>>
>> Would making the warning fatal impact on you?
>
> drivers/auxdisplay/arm-charlcd.c is missing MODULE_LICENSE. I will
> send the patch for that which should be in for 4.17.

Never mind that, it is builtin.

So all is good for drivers/auxdisplay already.

Cheers,
Miguel

>
> Apart from that one, the rest of drivers/auxdisplay is fine.
>
> Cheers,
> Miguel
>
>>
>> Regards,
>> Daniel
>>>
>>> Cheers,
>>> Miguel
>>>
>>>> --
>>>> 2.11.0
>>>>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-02-25 12:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-26  2:53 [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL") Daniel Axtens
2018-02-23 10:55 ` Miguel Ojeda
2018-02-24 15:08   ` Daniel Axtens
2018-02-25 12:25     ` Miguel Ojeda
2018-02-25 12:40       ` Miguel Ojeda

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome