diff options
author | Dave Jones <davej@redhat.com> | 2013-05-03 16:40:09 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-05-08 10:49:03 +0930 |
commit | f558a845c3a043d032bb247cdbe50db9202476a1 (patch) | |
tree | 044e119d65eb3501280f6209f0678622f78d94b8 /drivers | |
parent | de9c9f86be0dc3495de98dc65c80abe6e7c7d643 (diff) | |
download | op-kernel-dev-f558a845c3a043d032bb247cdbe50db9202476a1.zip op-kernel-dev-f558a845c3a043d032bb247cdbe50db9202476a1.tar.gz |
Add missing module license tag to vring helpers.
[ 624.286653] vringh: module license 'unspecified' taints kernel.
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/vhost/vringh.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/vhost/vringh.c b/drivers/vhost/vringh.c index bff0775..5174eba 100644 --- a/drivers/vhost/vringh.c +++ b/drivers/vhost/vringh.c @@ -3,6 +3,7 @@ * * Since these may be in userspace, we use (inline) accessors. */ +#include <linux/module.h> #include <linux/vringh.h> #include <linux/virtio_ring.h> #include <linux/kernel.h> @@ -1005,3 +1006,5 @@ int vringh_need_notify_kern(struct vringh *vrh) return __vringh_need_notify(vrh, getu16_kern); } EXPORT_SYMBOL(vringh_need_notify_kern); + +MODULE_LICENSE("GPL"); |