Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1315005 > unrolled thread

[PATCH v2 3/3] xen-scsiback: fix license ident used in MODULE_LICENSE

Started byWei Liu <wei.liu2@citrix.com>
First post2016-01-22 15:10 +0100
Last post2016-01-22 15:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v2 3/3] xen-scsiback: fix license ident used in MODULE_LICENSE Wei Liu <wei.liu2@citrix.com> - 2016-01-22 15:10 +0100

#1315005 — [PATCH v2 3/3] xen-scsiback: fix license ident used in MODULE_LICENSE

FromWei Liu <wei.liu2@citrix.com>
Date2016-01-22 15:10 +0100
Subject[PATCH v2 3/3] xen-scsiback: fix license ident used in MODULE_LICENSE
Message-ID<qTKzv-560-1@gated-at.bofh.it>
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/xen/xen-scsiback.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/xen/xen-scsiback.c b/drivers/xen/xen-scsiback.c
index ad4eb10..250d70f 100644
--- a/drivers/xen/xen-scsiback.c
+++ b/drivers/xen/xen-scsiback.c
@@ -1915,6 +1915,6 @@ module_init(scsiback_init);
 module_exit(scsiback_exit);
 
 MODULE_DESCRIPTION("Xen SCSI backend driver");
-MODULE_LICENSE("Dual BSD/GPL");
+MODULE_LICENSE("GPL");
 MODULE_ALIAS("xen-backend:vscsi");
 MODULE_AUTHOR("Juergen Gross <jgross@suse.com>");
-- 
2.1.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web