* [PATCH] 2.4.10-ac10: more MODULE_LICENSE patches
@ 2001-10-10 2:03 Frank Davis
2001-10-10 3:06 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Frank Davis @ 2001-10-10 2:03 UTC (permalink / raw)
To: linux-kernel; +Cc: alan, Alan Cox
[-- Attachment #1: Type: text/plain, Size: 174 bytes --]
Hello,
I have attached more MODULE_LICENSE patches against 2.4.10-ac10 .
major directories:
drivers/usb/
drivers/macintosh/
drivers/pcmcia/
Please review.
Regards,
Frank
[-- Attachment #2: USBHUB --]
[-- Type: text/plain, Size: 270 bytes --]
--- drivers/usb/hub.c.old Mon Oct 8 18:25:36 2001
+++ drivers/usb/hub.c Tue Oct 9 21:17:47 2001
@@ -856,7 +856,7 @@
};
MODULE_DEVICE_TABLE (usb, hub_id_table);
-
+MODULE_LICENSE("GPL");
static struct usb_driver hub_driver = {
name: "hub",
probe: hub_probe,
[-- Attachment #3: USBINODE --]
[-- Type: text/plain, Size: 222 bytes --]
--- drivers/usb/inode.c.old Mon Oct 8 18:25:37 2001
+++ drivers/usb/inode.c Tue Oct 9 21:15:15 2001
@@ -767,4 +767,5 @@
#if 0
module_init(usbdevfs_init);
module_exit(usbdevfs_cleanup);
+MODULE_LICENSE("GPL");
#endif
[-- Attachment #4: MACSERIA --]
[-- Type: text/plain, Size: 246 bytes --]
--- drivers/macintosh/macserial.c.old Sun Sep 30 20:38:48 2001
+++ drivers/macintosh/macserial.c Tue Oct 9 20:36:27 2001
@@ -2730,6 +2730,7 @@
module_init(macserial_init);
module_exit(macserial_cleanup);
+MODULE_LICENSE("GPL");
#if 0
/*
[-- Attachment #5: CISTPL --]
[-- Type: text/plain, Size: 353 bytes --]
--- drivers/pcmcia/cistpl.c.old Fri Feb 16 19:02:36 2001
+++ drivers/pcmcia/cistpl.c Tue Oct 9 21:07:12 2001
@@ -85,6 +85,8 @@
INT_MODULE_PARM(cis_width, 0); /* 16-bit CIS? */
+MODULE_LICENSE("GPL");
+
/*======================================================================
Low-level functions to read and write CIS memory. I think the
[-- Attachment #6: HD64465_ --]
[-- Type: text/plain, Size: 289 bytes --]
--- drivers/pcmcia/hd64465_ss.c.old Tue Jul 10 23:16:30 2001
+++ drivers/pcmcia/hd64465_ss.c Tue Oct 9 21:05:43 2001
@@ -1082,6 +1082,7 @@
module_init(init_hs);
module_exit(exit_hs);
+MODULE_LICENSE("GPL");
/*============================================================*/
/*END*/
[-- Attachment #7: NVRAM --]
[-- Type: text/plain, Size: 215 bytes --]
--- drivers/macintosh/nvram.c.old Sun Sep 30 20:38:49 2001
+++ drivers/macintosh/nvram.c Tue Oct 9 20:37:55 2001
@@ -124,3 +124,4 @@
module_init(nvram_init);
module_exit(nvram_cleanup);
+MODULE_LICENSE("GPL");
[-- Attachment #8: SA1100_G --]
[-- Type: text/plain, Size: 445 bytes --]
--- drivers/pcmcia/sa1100_generic.c.old Mon Oct 8 18:25:00 2001
+++ drivers/pcmcia/sa1100_generic.c Tue Oct 9 21:00:06 2001
@@ -63,6 +63,7 @@
MODULE_AUTHOR("John Dorsey <john+@cs.cmu.edu>");
MODULE_DESCRIPTION("Linux PCMCIA Card Services: SA-1100 Socket Controller");
+MODULE_LICENSE("GPL");
/* This structure maintains housekeeping state for each socket, such
* as the last known values of the card detect pins, or the Card Services
[-- Attachment #9: RTC_MAC --]
[-- Type: text/plain, Size: 206 bytes --]
--- drivers/macintosh/rtc.c.old Sun Sep 30 20:38:49 2001
+++ drivers/macintosh/rtc.c Tue Oct 9 20:39:12 2001
@@ -146,3 +146,5 @@
module_init(rtc_init);
module_exit(rtc_exit);
+MODULE_LICENSE("GPL");
+
[-- Attachment #10: RSRC_MGR --]
[-- Type: text/plain, Size: 354 bytes --]
--- drivers/pcmcia/rsrc_mgr.c.old Sun Jul 15 19:22:23 2001
+++ drivers/pcmcia/rsrc_mgr.c Tue Oct 9 21:02:40 2001
@@ -67,6 +67,8 @@
INT_MODULE_PARM(mem_limit, 0x10000);
#endif
+MODULE_LICENSE("GPL");
+
/*======================================================================
The resource_map_t structures are used to track what resources are
[-- Attachment #11: PCI_SOCK --]
[-- Type: text/plain, Size: 226 bytes --]
--- drivers/pcmcia/pci_socket.c.old Tue Jun 12 19:52:14 2001
+++ drivers/pcmcia/pci_socket.c Tue Oct 9 21:04:08 2001
@@ -266,3 +266,4 @@
module_init(pci_socket_init);
module_exit(pci_socket_exit);
+MODULE_LICENSE("GPL");
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] 2.4.10-ac10: more MODULE_LICENSE patches
2001-10-10 2:03 [PATCH] 2.4.10-ac10: more MODULE_LICENSE patches Frank Davis
@ 2001-10-10 3:06 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2001-10-10 3:06 UTC (permalink / raw)
To: Frank Davis; +Cc: linux-kernel, alan, Alan Cox
On Tue, Oct 09, 2001 at 10:03:01PM -0400, Frank Davis wrote:
> --- drivers/usb/hub.c.old Mon Oct 8 18:25:36 2001
> +++ drivers/usb/hub.c Tue Oct 9 21:17:47 2001
> @@ -856,7 +856,7 @@
> };
>
> MODULE_DEVICE_TABLE (usb, hub_id_table);
> -
> +MODULE_LICENSE("GPL");
> static struct usb_driver hub_driver = {
> name: "hub",
> probe: hub_probe,
hub.c is not a module. Alan, please do not apply.
> --- drivers/usb/inode.c.old Mon Oct 8 18:25:37 2001
> +++ drivers/usb/inode.c Tue Oct 9 21:15:15 2001
> @@ -767,4 +767,5 @@
> #if 0
> module_init(usbdevfs_init);
> module_exit(usbdevfs_cleanup);
> +MODULE_LICENSE("GPL");
> #endif
inode.c is not a module either. Alan, please do not apply.
Both of these files are covered with the MODULE_LICENSE found in usb.c
thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-10-10 3:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-10 2:03 [PATCH] 2.4.10-ac10: more MODULE_LICENSE patches Frank Davis
2001-10-10 3:06 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox