Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
db8b4099
Commit
db8b4099
authored
Apr 02, 2002
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] Add missing MODULE_LICENSE tags
Still a few out there.. Most of these from 2.4
parent
83b819c5
Changes
17
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
25 additions
and
0 deletions
+25
-0
drivers/block/DAC960.c
drivers/block/DAC960.c
+2
-0
drivers/isdn/hisax/hisax_fcpcipnp.c
drivers/isdn/hisax/hisax_fcpcipnp.c
+1
-0
drivers/isdn/hisax/hisax_isac.c
drivers/isdn/hisax/hisax_isac.c
+1
-0
drivers/mtd/nand/nand_ecc.c
drivers/mtd/nand/nand_ecc.c
+2
-0
drivers/parport/parport_mfc3.c
drivers/parport/parport_mfc3.c
+1
-0
drivers/scsi/NCR53C9x.c
drivers/scsi/NCR53C9x.c
+2
-0
drivers/scsi/a2091.c
drivers/scsi/a2091.c
+2
-0
drivers/scsi/sun3x_esp.c
drivers/scsi/sun3x_esp.c
+2
-0
fs/hfs/super.c
fs/hfs/super.c
+2
-0
net/atm/pppoatm.c
net/atm/pppoatm.c
+1
-0
net/ax25/af_ax25.c
net/ax25/af_ax25.c
+1
-0
net/econet/af_econet.c
net/econet/af_econet.c
+2
-0
net/lapb/lapb_iface.c
net/lapb/lapb_iface.c
+1
-0
net/netlink/netlink_dev.c
net/netlink/netlink_dev.c
+2
-0
net/netrom/af_netrom.c
net/netrom/af_netrom.c
+1
-0
net/rose/af_rose.c
net/rose/af_rose.c
+1
-0
net/x25/af_x25.c
net/x25/af_x25.c
+1
-0
No files found.
drivers/block/DAC960.c
View file @
db8b4099
...
...
@@ -6902,3 +6902,5 @@ static void DAC960_DestroyProcEntries(void)
module_init
(
DAC960_Initialize
);
module_exit
(
DAC960_Finalize
);
MODULE_LICENSE
(
"GPL"
);
drivers/isdn/hisax/hisax_fcpcipnp.c
View file @
db8b4099
...
...
@@ -65,6 +65,7 @@ MODULE_DEVICE_TABLE(isapnp, fcpnp_ids);
static
int
protocol
=
2
;
/* EURO-ISDN Default */
MODULE_PARM
(
protocol
,
"i"
);
MODULE_LICENSE
(
"GPL"
);
// ----------------------------------------------------------------------
...
...
drivers/isdn/hisax/hisax_isac.c
View file @
db8b4099
...
...
@@ -44,6 +44,7 @@ static char *ISACVer[] = {
MODULE_AUTHOR
(
"Kai Germaschewski <kai.germaschewski@gmx.de>/Karsten Keil <kkeil@suse.de>"
);
MODULE_DESCRIPTION
(
"ISAC/ISAC-SX driver"
);
MODULE_LICENSE
(
"GPL"
);
#define DBG_WARN 0x0001
#define DBG_IRQ 0x0002
...
...
drivers/mtd/nand/nand_ecc.c
View file @
db8b4099
...
...
@@ -207,3 +207,5 @@ int nand_correct_data (u_char *dat, u_char *read_ecc, u_char *calc_ecc)
EXPORT_SYMBOL
(
nand_calculate_ecc
);
EXPORT_SYMBOL
(
nand_correct_data
);
MODULE_LICENSE
(
"GPL"
);
drivers/parport/parport_mfc3.c
View file @
db8b4099
...
...
@@ -408,6 +408,7 @@ void __exit parport_mfc3_exit(void)
MODULE_AUTHOR
(
"Joerg Dorchain <joerg@dorchain.net>"
);
MODULE_DESCRIPTION
(
"Parport Driver for Multiface 3 expansion cards Paralllel Port"
);
MODULE_SUPPORTED_DEVICE
(
"Multiface 3 Parallel Port"
);
MODULE_LICENSE
(
"GPL"
);
module_init
(
parport_mfc3_init
)
module_exit
(
parport_mfc3_exit
)
...
...
drivers/scsi/NCR53C9x.c
View file @
db8b4099
...
...
@@ -3615,3 +3615,5 @@ void esp_release(void)
esps_running
=
esps_in_use
;
}
#endif
MODULE_LICENSE
(
"GPL"
);
drivers/scsi/a2091.c
View file @
db8b4099
...
...
@@ -248,3 +248,5 @@ int a2091_release(struct Scsi_Host *instance)
#endif
return
1
;
}
MODULE_LICENSE
(
"GPL"
);
drivers/scsi/sun3x_esp.c
View file @
db8b4099
...
...
@@ -376,3 +376,5 @@ static void dma_advance_sg (Scsi_Cmnd *sp)
static
Scsi_Host_Template
driver_template
=
SCSI_SUN3X_ESP
;
#include "scsi_module.c"
MODULE_LICENSE
(
"GPL"
);
fs/hfs/super.c
View file @
db8b4099
...
...
@@ -32,6 +32,8 @@
#include <linux/module.h>
#include <linux/init.h>
MODULE_LICENSE
(
"GPL"
);
/*================ Forward declarations ================*/
static
void
hfs_read_inode
(
struct
inode
*
);
...
...
net/atm/pppoatm.c
View file @
db8b4099
...
...
@@ -363,3 +363,4 @@ module_exit(pppoatm_exit);
MODULE_AUTHOR
(
"Mitchell Blank Jr <mitch@sfgoth.com>"
);
MODULE_DESCRIPTION
(
"RFC2364 PPP over ATM/AAL5"
);
MODULE_LICENSE
(
"GPL"
);
net/ax25/af_ax25.c
View file @
db8b4099
...
...
@@ -1889,6 +1889,7 @@ module_init(ax25_init);
MODULE_AUTHOR
(
"Jonathan Naylor G4KLX <g4klx@g4klx.demon.co.uk>"
);
MODULE_DESCRIPTION
(
"The amateur radio AX.25 link layer protocol"
);
MODULE_LICENSE
(
"GPL"
);
static
void
__exit
ax25_exit
(
void
)
{
...
...
net/econet/af_econet.c
View file @
db8b4099
...
...
@@ -1133,3 +1133,5 @@ static int __init econet_proto_init(void)
module_init
(
econet_proto_init
);
module_exit
(
econet_proto_exit
);
MODULE_LICENSE
(
"GPL"
);
net/lapb/lapb_iface.c
View file @
db8b4099
...
...
@@ -407,5 +407,6 @@ static int __init lapb_init(void)
MODULE_AUTHOR
(
"Jonathan Naylor <g4klx@g4klx.demon.co.uk>"
);
MODULE_DESCRIPTION
(
"The X.25 Link Access Procedure B link layer protocol"
);
MODULE_LICENSE
(
"GPL"
);
module_init
(
lapb_init
);
net/netlink/netlink_dev.c
View file @
db8b4099
...
...
@@ -206,6 +206,8 @@ int __init init_netlink(void)
#ifdef MODULE
MODULE_LICENSE
(
"GPL"
);
int
init_module
(
void
)
{
printk
(
KERN_INFO
"Network Kernel/User communications module 0.04
\n
"
);
...
...
net/netrom/af_netrom.c
View file @
db8b4099
...
...
@@ -1338,6 +1338,7 @@ MODULE_PARM_DESC(nr_ndevs, "number of NET/ROM devices");
MODULE_AUTHOR
(
"Jonathan Naylor G4KLX <g4klx@g4klx.demon.co.uk>"
);
MODULE_DESCRIPTION
(
"The amateur radio NET/ROM network and transport layer protocol"
);
MODULE_LICENSE
(
"GPL"
);
static
void
__exit
nr_exit
(
void
)
{
...
...
net/rose/af_rose.c
View file @
db8b4099
...
...
@@ -1519,6 +1519,7 @@ MODULE_PARM_DESC(rose_ndevs, "number of ROSE devices");
MODULE_AUTHOR
(
"Jonathan Naylor G4KLX <g4klx@g4klx.demon.co.uk>"
);
MODULE_DESCRIPTION
(
"The amateur radio ROSE network layer protocol"
);
MODULE_LICENSE
(
"GPL"
);
static
void
__exit
rose_exit
(
void
)
{
...
...
net/x25/af_x25.c
View file @
db8b4099
...
...
@@ -1371,6 +1371,7 @@ EXPORT_NO_SYMBOLS;
MODULE_AUTHOR
(
"Jonathan Naylor <g4klx@g4klx.demon.co.uk>"
);
MODULE_DESCRIPTION
(
"The X.25 Packet Layer network layer protocol"
);
MODULE_LICENSE
(
"GPL"
);
static
void
__exit
x25_exit
(
void
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment