* [PATCH] 2.4.12-ac1: a few more net MODULE_LICENSE patches
@ 2001-10-14 16:47 Frank Davis
2001-10-16 15:05 ` Jes Sorensen
0 siblings, 1 reply; 2+ messages in thread
From: Frank Davis @ 2001-10-14 16:47 UTC (permalink / raw)
To: linux-kernel; +Cc: Alan Cox
[-- Attachment #1: Type: text/plain, Size: 164 bytes --]
Hello,
I've attached a few more MODULE_LICENSE patches against 2.4.12-ac1 .
A few more net MODULE_LICENSE patches to follow soon. Please review.
Regards,
Frank
[-- Attachment #2: A2065 --]
[-- Type: text/plain, Size: 204 bytes --]
--- drivers/net/a2065.c.old Thu Apr 12 15:15:25 2001
+++ drivers/net/a2065.c Sun Oct 14 11:51:13 2001
@@ -837,3 +837,4 @@
module_init(a2065_probe);
module_exit(a2065_cleanup);
+MODULE_LICENSE("GPL");
[-- Attachment #3: ACENIC --]
[-- Type: text/plain, Size: 239 bytes --]
--- drivers/net/acenic.c.old Fri Oct 12 18:42:54 2001
+++ drivers/net/acenic.c Sun Oct 14 11:56:31 2001
@@ -145,10 +145,6 @@
#endif
-#ifndef MODULE_LICENSE
-#define MODULE_LICENSE(a)
-#endif
-
#ifndef wmb
#define wmb() mb()
#endif
[-- Attachment #4: ATARIB1 --]
[-- Type: text/plain, Size: 345 bytes --]
--- drivers/net/atari_bionet.c.old Wed Jun 20 14:10:53 2001
+++ drivers/net/atari_bionet.c Sun Oct 14 11:59:49 2001
@@ -128,6 +128,7 @@
unsigned int bionet_debug = NET_DEBUG;
MODULE_PARM(bionet_debug, "i");
MODULE_PARM_DESC(bionet_debug, "bionet debug level (0-2)");
+MODULE_LICENSE("GPL");
static unsigned int bionet_min_poll_time = 2;
[-- Attachment #5: ATARIL1 --]
[-- Type: text/plain, Size: 326 bytes --]
--- drivers/net/atarilance.c.old Wed Jun 20 14:10:53 2001
+++ drivers/net/atarilance.c Sun Oct 14 12:03:10 2001
@@ -84,6 +84,7 @@
#endif
MODULE_PARM(lance_debug, "i");
MODULE_PARM_DESC(lance_debug, "atarilance debug level (0-3)");
+MODULE_LICENSE("GPL");
/* Print debug messages on probing? */
#undef LANCE_DEBUG_PROBE
[-- Attachment #6: ATARIP1 --]
[-- Type: text/plain, Size: 353 bytes --]
--- drivers/net/atari_pamsnet.c.old Wed Jun 20 14:10:53 2001
+++ drivers/net/atari_pamsnet.c Sun Oct 14 12:01:29 2001
@@ -124,6 +124,7 @@
unsigned int pamsnet_debug = NET_DEBUG;
MODULE_PARM(pamsnet_debug, "i");
MODULE_PARM_DESC(pamsnet_debug, "pamsnet debug enable (0-1)");
+MODULE_LICENSE("GPL");
static unsigned int pamsnet_min_poll_time = 2;
[-- Attachment #7: BAGETLAN --]
[-- Type: text/plain, Size: 321 bytes --]
--- drivers/net/bagetlance.c.old Wed Jun 20 14:10:53 2001
+++ drivers/net/bagetlance.c Sun Oct 14 12:07:26 2001
@@ -60,6 +60,7 @@
#endif
MODULE_PARM(lance_debug, "i");
MODULE_PARM_DESC(lance_debug, "Lance debug level (0-3)");
+MODULE_LICENSE("GPL");
/* Print debug messages on probing? */
#undef LANCE_DEBUG_PROBE
[-- Attachment #8: BMAC --]
[-- Type: text/plain, Size: 294 bytes --]
--- drivers/net/bmac.c.old Sun Sep 30 20:38:57 2001
+++ drivers/net/bmac.c Sun Oct 14 12:06:20 2001
@@ -1658,6 +1658,7 @@
MODULE_AUTHOR("Randy Gobbel/Paul Mackerras");
MODULE_DESCRIPTION("PowerMac BMAC ethernet driver.");
+MODULE_LICENSE("GPL");
static void __exit bmac_cleanup (void)
[-- Attachment #9: FEALNX --]
[-- Type: text/plain, Size: 363 bytes --]
--- drivers/net/fealnx.c.old Sun Sep 30 20:38:59 2001
+++ drivers/net/fealnx.c Sun Oct 14 12:10:12 2001
@@ -109,6 +109,7 @@
MODULE_AUTHOR("Myson or whoever");
MODULE_DESCRIPTION("Myson MTD-8xx 100/10M Ethernet PCI Adapter Driver");
+MODULE_LICENSE("GPL");
MODULE_PARM(max_interrupt_work, "i");
//MODULE_PARM(min_pci_latency, "i");
MODULE_PARM(debug, "i");
[-- Attachment #10: FMV18X --]
[-- Type: text/plain, Size: 331 bytes --]
--- drivers/net/fmv18x.c.old Tue Jul 17 21:53:55 2001
+++ drivers/net/fmv18x.c Sun Oct 14 12:11:31 2001
@@ -632,6 +632,7 @@
MODULE_PARM_DESC(io, "FMV-18X I/O address");
MODULE_PARM_DESC(irq, "FMV-18X IRQ number");
MODULE_PARM_DESC(net_debug, "FMV-18X debug level (0-1,5-6)");
+MODULE_LICENSE("GPL");
int init_module(void)
{
[-- Attachment #11: GT96100E --]
[-- Type: text/plain, Size: 232 bytes --]
--- drivers/net/gt96100eth.c.old Sun Sep 30 20:39:00 2001
+++ drivers/net/gt96100eth.c Sun Oct 14 12:14:39 2001
@@ -1250,3 +1250,5 @@
}
module_init(gt96100_probe);
+// shouldn't there be a module_exit ?
+MODULE_LICENSE("GPL");
[-- Attachment #12: GMAC --]
[-- Type: text/plain, Size: 297 bytes --]
--- drivers/net/gmac.c.old Sun Sep 30 20:38:59 2001
+++ drivers/net/gmac.c Sun Oct 14 12:12:40 2001
@@ -1676,6 +1676,7 @@
MODULE_AUTHOR("Paul Mackerras/Ben Herrenschmidt");
MODULE_DESCRIPTION("PowerMac GMAC driver.");
+MODULE_LICENSE("GPL");
static void __exit gmac_cleanup_module(void)
{
[-- Attachment #13: HPLANCE --]
[-- Type: text/plain, Size: 228 bytes --]
--- drivers/net/hplance.c.old Thu Apr 12 15:15:25 2001
+++ drivers/net/hplance.c Sun Oct 14 12:17:08 2001
@@ -226,6 +226,7 @@
}
#ifdef MODULE
+MODULE_LICENSE("GPL");
int init_module(void)
{
root_lance_dev = NULL;
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] 2.4.12-ac1: a few more net MODULE_LICENSE patches
2001-10-14 16:47 [PATCH] 2.4.12-ac1: a few more net MODULE_LICENSE patches Frank Davis
@ 2001-10-16 15:05 ` Jes Sorensen
0 siblings, 0 replies; 2+ messages in thread
From: Jes Sorensen @ 2001-10-16 15:05 UTC (permalink / raw)
To: fdavis; +Cc: linux-kernel, Alan Cox
>>>>> "Frank" == Frank Davis <fdavis@si.rr.com> writes:
Frank> Hello, I've attached a few more MODULE_LICENSE patches against
Frank> 2.4.12-ac1 . A few more net MODULE_LICENSE patches to follow
Frank> soon. Please review. Regards, Frank ---
ARGH!
Alan, please do not apply this one.
Why are you trying to remove my compat macro for MODULE_LICENSE? I am
trying to maintain the source so it compiles under multiple kernels!
If you submit acenic patches, make sure to drop a copy in my
inbox. Yes, I am listed in the source code, it's really hard to miss.
Jes
--- drivers/net/acenic.c.old Fri Oct 12 18:42:54 2001
+++ drivers/net/acenic.c Sun Oct 14 11:56:31 2001
@@ -145,10 +145,6 @@
#endif
-#ifndef MODULE_LICENSE
-#define MODULE_LICENSE(a)
-#endif
-
#ifndef wmb
#define wmb() mb()
#endif
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-10-16 15:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-14 16:47 [PATCH] 2.4.12-ac1: a few more net MODULE_LICENSE patches Frank Davis
2001-10-16 15:05 ` Jes Sorensen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox