* Re: linux-next: Tree for Dec 22 (netdev/stmmac) [not found] <20111222172039.dc704e5bbfc3d91a844897b3@canb.auug.org.au> @ 2011-12-23 1:37 ` Randy Dunlap 2011-12-23 10:18 ` Giuseppe CAVALLARO 2011-12-23 10:31 ` [net-next] stmmac: fix missing module license in the main Giuseppe CAVALLARO 0 siblings, 2 replies; 5+ messages in thread From: Randy Dunlap @ 2011-12-23 1:37 UTC (permalink / raw) To: Stephen Rothwell; +Cc: linux-next, LKML, Netdev On 12/21/2011 10:20 PM, Stephen Rothwell wrote: > Hi all, > > This will probably be the last linux-next tree until the new year (unless > I get exceedingly bored :-)). goody :) WARNING: modpost: missing MODULE_LICENSE() in drivers/net/ethernet/stmicro/stmmac/stmmac.o see include/linux/module.h for more information -- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code *** ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: linux-next: Tree for Dec 22 (netdev/stmmac) 2011-12-23 1:37 ` linux-next: Tree for Dec 22 (netdev/stmmac) Randy Dunlap @ 2011-12-23 10:18 ` Giuseppe CAVALLARO 2011-12-23 10:31 ` [net-next] stmmac: fix missing module license in the main Giuseppe CAVALLARO 1 sibling, 0 replies; 5+ messages in thread From: Giuseppe CAVALLARO @ 2011-12-23 10:18 UTC (permalink / raw) To: Randy Dunlap; +Cc: Stephen Rothwell, linux-next, LKML, Netdev On 12/23/2011 2:37 AM, Randy Dunlap wrote: > On 12/21/2011 10:20 PM, Stephen Rothwell wrote: >> Hi all, >> >> This will probably be the last linux-next tree until the new year (unless >> I get exceedingly bored :-)). > > goody :) > > > WARNING: modpost: missing MODULE_LICENSE() in drivers/net/ethernet/stmicro/stmmac/stmmac.o > see include/linux/module.h for more information > I'm fixing that and send you a patch Peppe ^ permalink raw reply [flat|nested] 5+ messages in thread
* [net-next] stmmac: fix missing module license in the main. 2011-12-23 1:37 ` linux-next: Tree for Dec 22 (netdev/stmmac) Randy Dunlap 2011-12-23 10:18 ` Giuseppe CAVALLARO @ 2011-12-23 10:31 ` Giuseppe CAVALLARO 2011-12-23 11:16 ` Giuseppe CAVALLARO 2011-12-23 19:21 ` David Miller 1 sibling, 2 replies; 5+ messages in thread From: Giuseppe CAVALLARO @ 2011-12-23 10:31 UTC (permalink / raw) To: netdev; +Cc: Giuseppe Cavallaro This patch fixes the following warning raised when compile: WARNING: modpost: missing MODULE_LICENSE() in drivers/net/ethernet/stmicro/stmmac/stmmac.o Reported-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> --- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index b314592..3738b47 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -2039,3 +2039,7 @@ err: __setup("stmmaceth=", stmmac_cmdline_opt); #endif + +MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet device driver"); +MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>"); +MODULE_LICENSE("GPL"); -- 1.7.4.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [net-next] stmmac: fix missing module license in the main. 2011-12-23 10:31 ` [net-next] stmmac: fix missing module license in the main Giuseppe CAVALLARO @ 2011-12-23 11:16 ` Giuseppe CAVALLARO 2011-12-23 19:21 ` David Miller 1 sibling, 0 replies; 5+ messages in thread From: Giuseppe CAVALLARO @ 2011-12-23 11:16 UTC (permalink / raw) To: linux-next; +Cc: netdev, Randy Dunlap, LKML, Stephen Rothwell, David S. Miller [-- Attachment #1: Type: text/plain, Size: 1053 bytes --] Sorry I had forgotten to add you on copy. Peppe p.s. patch attached here too. On 12/23/2011 11:31 AM, Giuseppe CAVALLARO wrote: > This patch fixes the following warning raised > when compile: > > WARNING: modpost: missing MODULE_LICENSE() > in drivers/net/ethernet/stmicro/stmmac/stmmac.o > > Reported-by: Randy Dunlap <rdunlap@xenotime.net> > Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> > --- > drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 4 ++++ > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c > index b314592..3738b47 100644 > --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c > +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c > @@ -2039,3 +2039,7 @@ err: > > __setup("stmmaceth=", stmmac_cmdline_opt); > #endif > + > +MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet device driver"); > +MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>"); > +MODULE_LICENSE("GPL"); [-- Attachment #2: 0001-stmmac-fix-missing-module-license-in-the-main.patch --] [-- Type: text/x-patch, Size: 1114 bytes --] >From c24fa5e2784f85e6170a495bc42dea9a854cb3da Mon Sep 17 00:00:00 2001 From: Giuseppe Cavallaro <peppe.cavallaro@st.com> Date: Fri, 23 Dec 2011 11:25:13 +0100 Subject: [net-next] stmmac: fix missing module license in the main. This patch fixes the following warning raised when compile: WARNING: modpost: missing MODULE_LICENSE() in drivers/net/ethernet/stmicro/stmmac/stmmac.o Reported-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> --- drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index b314592..3738b47 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c @@ -2039,3 +2039,7 @@ err: __setup("stmmaceth=", stmmac_cmdline_opt); #endif + +MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet device driver"); +MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>"); +MODULE_LICENSE("GPL"); -- 1.7.4.4 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [net-next] stmmac: fix missing module license in the main. 2011-12-23 10:31 ` [net-next] stmmac: fix missing module license in the main Giuseppe CAVALLARO 2011-12-23 11:16 ` Giuseppe CAVALLARO @ 2011-12-23 19:21 ` David Miller 1 sibling, 0 replies; 5+ messages in thread From: David Miller @ 2011-12-23 19:21 UTC (permalink / raw) To: peppe.cavallaro; +Cc: netdev From: Giuseppe CAVALLARO <peppe.cavallaro@st.com> Date: Fri, 23 Dec 2011 11:31:07 +0100 > This patch fixes the following warning raised > when compile: > > WARNING: modpost: missing MODULE_LICENSE() > in drivers/net/ethernet/stmicro/stmmac/stmmac.o > > Reported-by: Randy Dunlap <rdunlap@xenotime.net> > Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> Applied. ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-12-23 19:21 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20111222172039.dc704e5bbfc3d91a844897b3@canb.auug.org.au>
2011-12-23 1:37 ` linux-next: Tree for Dec 22 (netdev/stmmac) Randy Dunlap
2011-12-23 10:18 ` Giuseppe CAVALLARO
2011-12-23 10:31 ` [net-next] stmmac: fix missing module license in the main Giuseppe CAVALLARO
2011-12-23 11:16 ` Giuseppe CAVALLARO
2011-12-23 19:21 ` David Miller
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).