Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1315006
| From | Wei Liu <wei.liu2@citrix.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 2/3] xen-blkback: fix license ident used in MODULE_LICENSE |
| Date | 2016-01-22 15:10 +0100 |
| Message-ID | <qTKzw-560-11@gated-at.bofh.it> (permalink) |
| References | <qTKzv-560-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
The comment at the beginning of the file is the canonical source of
licenses for this module. The license used to distribute outside of
Linux kernel is not BSD license but X11 license. Instead of trying to
determine whether X11 license can be mapped into Linux's "MIT" license
ident, simply make the code to use "GPL" only.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
drivers/block/xen-blkback/blkback.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/block/xen-blkback/blkback.c b/drivers/block/xen-blkback/blkback.c
index 4809c15..1cb29a2 100644
--- a/drivers/block/xen-blkback/blkback.c
+++ b/drivers/block/xen-blkback/blkback.c
@@ -1496,5 +1496,5 @@ static int __init xen_blkif_init(void)
module_init(xen_blkif_init);
-MODULE_LICENSE("Dual BSD/GPL");
+MODULE_LICENSE("GPL");
MODULE_ALIAS("xen-backend:vbd");
--
2.1.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH v2 2/3] xen-blkback: fix license ident used in MODULE_LICENSE Wei Liu <wei.liu2@citrix.com> - 2016-01-22 15:10 +0100
csiph-web