All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.4.10-ac7: More MODULE_LICENSE additions
@ 2001-10-07  2:03 Frank Davis
  0 siblings, 0 replies; only message in thread
From: Frank Davis @ 2001-10-07  2:03 UTC (permalink / raw)
  To: linux-kernel; +Cc: alan

[-- Attachment #1: Type: text/plain, Size: 111 bytes --]

Hello,
      I have attached more MODULE_LICENSE additions against 2.4.10-ac7 . 
Please review.
Regards,
Frank

[-- Attachment #2: IDE-DISK --]
[-- Type: text/plain, Size: 210 bytes --]

--- drivers/ide/ide-disk.c.old	Mon Aug 27 11:53:01 2001
+++ drivers/ide/ide-disk.c	Sat Oct  6 20:07:07 2001
@@ -890,3 +890,4 @@
 
 module_init(idedisk_init);
 module_exit(idedisk_exit);
+MODULE_LICENSE("GPL");

[-- Attachment #3: NETIUCV --]
[-- Type: text/plain, Size: 286 bytes --]

--- drivers/s390/net/netiucv.c.old	Fri Oct  5 23:04:30 2001
+++ drivers/s390/net/netiucv.c	Sat Oct  6 20:50:37 2001
@@ -2115,7 +2115,8 @@
 	return 0;
 }
 
-module_init(netiucv_init);
 #ifdef MODULE
+module_init(netiucv_init);
 module_exit(netiucv_exit);
+MODULE_LICENSE("GPL");
 #endif

[-- Attachment #4: PNP_BIOS --]
[-- Type: text/plain, Size: 348 bytes --]

--- drivers/pnp/pnp_bios.c.old	Fri Oct  5 23:04:27 2001
+++ drivers/pnp/pnp_bios.c	Sat Oct  6 20:43:18 2001
@@ -1093,6 +1093,9 @@
 }
 
 #ifdef MODULE
+
+MODULE_LICENSE("GPL");
+
 /* We have to run it early and specifically in non modular.. */
 module_init(pnp_bios_init);
 
@@ -1104,5 +1107,6 @@
 }
 
 module_exit(pnp_bios_exit);
+
 #endif
 #endif

[-- Attachment #5: TC --]
[-- Type: text/plain, Size: 233 bytes --]

--- drivers/tc/tc.c.old	Sun Sep 30 20:39:33 2001
+++ drivers/tc/tc.c	Sat Oct  6 21:00:57 2001
@@ -25,6 +25,7 @@
 
 #define TC_DEBUG
 
+MODULE_LICENSE("GPL");
 slot_info tc_bus[MAX_SLOT];
 static int max_tcslot;
 static tcinfo *info;

[-- Attachment #6: GRAPHICS --]
[-- Type: text/plain, Size: 239 bytes --]

--- drivers/sgi/char/graphics.c.old	Sun Sep 30 20:39:25 2001
+++ drivers/sgi/char/graphics.c	Sat Oct  6 21:05:33 2001
@@ -343,6 +343,8 @@
 }
 
 #ifdef MODULE
+MODULE_LICENSE("GPL");
+
 int init_module(void) {
 	static int initiated = 0;
 

[-- Attachment #7: CTCMAIN --]
[-- Type: text/plain, Size: 375 bytes --]

--- drivers/s390/net/ctcmain.c.old	Fri Oct  5 23:04:30 2001
+++ drivers/s390/net/ctcmain.c	Sat Oct  6 20:53:42 2001
@@ -96,6 +96,7 @@
 #ifdef MODULE
 MODULE_AUTHOR("(C) 2000 IBM Corp. by Fritz Elfert (felfert@millenux.com)");
 MODULE_DESCRIPTION("Linux for S/390 CTC/Escon Driver");
+MODULE_LICENSE("GPL");
 #ifndef CTC_CHANDEV
 MODULE_PARM(ctc, "s");
 MODULE_PARM_DESC(ctc,

[-- Attachment #8: ISAPNP --]
[-- Type: text/plain, Size: 431 bytes --]

--- drivers/pnp/isapnp.c.old	Fri Oct  5 23:04:27 2001
+++ drivers/pnp/isapnp.c	Sat Oct  6 20:37:06 2001
@@ -87,6 +87,7 @@
 MODULE_PARM_DESC(isapnp_reserve_io, "ISA Plug & Play - reserve I/O region(s) - port,size");
 MODULE_PARM(isapnp_reserve_mem, "1-16i");
 MODULE_PARM_DESC(isapnp_reserve_mem, "ISA Plug & Play - reserve memory region(s) - address,size");
+MODULE_LICENSE("GPL");
 
 #define _PIDXR		0x279
 #define _PNPWRP		0xa79

[-- Attachment #9: ISAPNP_P --]
[-- Type: text/plain, Size: 282 bytes --]

--- drivers/pnp/isapnp_proc.c.old	Sat Oct  6 20:40:17 2001
+++ drivers/pnp/isapnp_proc.c	Sat Oct  6 20:41:08 2001
@@ -297,6 +297,8 @@
 
 #ifdef MODULE
 
+MODULE_LICENSE("GPL");
+
 static int __exit isapnp_proc_detach_device(struct pci_dev *dev)
 {
 	struct pci_bus *bus = dev->bus;

[-- Attachment #10: KEYBDEV --]
[-- Type: text/plain, Size: 301 bytes --]

--- drivers/input/keybdev.c.old	Sun Sep 30 20:38:43 2001
+++ drivers/input/keybdev.c	Sat Oct  6 20:29:24 2001
@@ -246,3 +246,4 @@
 MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
 MODULE_DESCRIPTION("Input driver to keyboard driver binding");
 MODULE_PARM(jp_kbd_109, "i");
+MODULE_LICENSE("GPL");

[-- Attachment #11: NUBUS_SY --]
[-- Type: text/plain, Size: 313 bytes --]

--- drivers/nubus/nubus_syms.c.old	Sat Sep  4 16:08:32 1999
+++ drivers/nubus/nubus_syms.c	Sat Oct  6 21:13:09 2001
@@ -12,6 +12,8 @@
 EXPORT_SYMBOL(nubus_proc_detach_device);
 #endif
 
+MODULE_LICENSE("GPL");
+
 EXPORT_SYMBOL(nubus_find_device);
 EXPORT_SYMBOL(nubus_find_type);
 EXPORT_SYMBOL(nubus_find_slot);

[-- Attachment #12: I2C-PROC --]
[-- Type: text/plain, Size: 349 bytes --]

--- drivers/i2c/i2c-proc.c.old	Fri Oct  5 23:03:34 2001
+++ drivers/i2c/i2c-proc.c	Sat Oct  6 19:38:09 2001
@@ -883,6 +883,7 @@
 
 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>");
 MODULE_DESCRIPTION("i2c-proc driver");
+MODULE_LICENSE("GPL");
 
 int i2c_cleanup(void)
 {
@@ -902,5 +903,4 @@
 {
 	return i2c_cleanup();
 }
-
 #endif				/* MODULE */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2001-10-07  2:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-07  2:03 [PATCH] 2.4.10-ac7: More MODULE_LICENSE additions Frank Davis

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.