2012-11-13 04:39:36

by Andrew Cooks

[permalink] [raw]
Subject: [PATCH] Add missing license for ioapic module.

config PCI_IOAPIC turned into a tristate in commit b95a7bd700466c10fda84acbd33f70cf66ec91ce, but no module license is specified. This adds the missing module license.

Signed-off-by: Andrew Cooks <[email protected]>
---
drivers/pci/ioapic.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/pci/ioapic.c b/drivers/pci/ioapic.c
index 205af8d..22436f7 100644
--- a/drivers/pci/ioapic.c
+++ b/drivers/pci/ioapic.c
@@ -125,3 +125,5 @@ static void __exit ioapic_exit(void)

module_init(ioapic_init);
module_exit(ioapic_exit);
+
+MODULE_LICENSE("GPL");
--
1.7.1


2012-11-13 07:33:18

by Jan Beulich

[permalink] [raw]
Subject: Re: [PATCH] Add missing license for ioapic module.

>>> On 13.11.12 at 05:39, Andrew Cooks <[email protected]> wrote:
> config PCI_IOAPIC turned into a tristate in commit
> b95a7bd700466c10fda84acbd33f70cf66ec91ce, but no module license is specified.
> This adds the missing module license.
>
> Signed-off-by: Andrew Cooks <[email protected]>

Acked-by: Jan Beulich <[email protected]>

> ---
> drivers/pci/ioapic.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/pci/ioapic.c b/drivers/pci/ioapic.c
> index 205af8d..22436f7 100644
> --- a/drivers/pci/ioapic.c
> +++ b/drivers/pci/ioapic.c
> @@ -125,3 +125,5 @@ static void __exit ioapic_exit(void)
>
> module_init(ioapic_init);
> module_exit(ioapic_exit);
> +
> +MODULE_LICENSE("GPL");
> --
> 1.7.1


2012-11-13 18:59:41

by Bjorn Helgaas

[permalink] [raw]
Subject: Re: [PATCH] Add missing license for ioapic module.

On Tue, Nov 13, 2012 at 12:33 AM, Jan Beulich <[email protected]> wrote:
>>>> On 13.11.12 at 05:39, Andrew Cooks <[email protected]> wrote:
>> config PCI_IOAPIC turned into a tristate in commit
>> b95a7bd700466c10fda84acbd33f70cf66ec91ce, but no module license is specified.
>> This adds the missing module license.
>>
>> Signed-off-by: Andrew Cooks <[email protected]>
>
> Acked-by: Jan Beulich <[email protected]>

I applied this to my pci/misc branch as v3.8 material. Thanks!

Bjorn