diff options
author | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2017-11-15 19:24:02 +0300 |
---|---|---|
committer | Boris Ostrovsky <boris.ostrovsky@oracle.com> | 2017-11-15 21:13:26 +0300 |
commit | 24e7f84db0db6b6f14581707a45d06ec5d5b88f2 (patch) | |
tree | a66c0bac01d2b2f1909914327b401f8c57a6aa21 /drivers/xen/pvcalls-front.c | |
parent | ffe15f83ef856ba451e99c41b07d46763bd72a0f (diff) | |
download | linux-24e7f84db0db6b6f14581707a45d06ec5d5b88f2.tar.xz |
xen/pvcalls: Add MODULE_LICENSE()
Since commit ba1029c9cbc5 ("modpost: detect modules without a
MODULE_LICENSE") modules without said macro will generate
WARNING: modpost: missing MODULE_LICENSE() in <filename>
While at it, also add module description and attribution.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Acked-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'drivers/xen/pvcalls-front.c')
-rw-r--r-- | drivers/xen/pvcalls-front.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/xen/pvcalls-front.c b/drivers/xen/pvcalls-front.c index 2925b2f095ed..9e40c2cd70b1 100644 --- a/drivers/xen/pvcalls-front.c +++ b/drivers/xen/pvcalls-front.c @@ -1273,3 +1273,7 @@ static int __init pvcalls_frontend_init(void) } module_init(pvcalls_frontend_init); + +MODULE_DESCRIPTION("Xen PV Calls frontend driver"); +MODULE_AUTHOR("Stefano Stabellini <sstabellini@kernel.org>"); +MODULE_LICENSE("GPL"); |