Add missing module license tag to vring helpers.
authorDave Jones <davej@redhat.com>
Fri, 3 May 2013 20:40:09 +0000 (16:40 -0400)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 8 May 2013 01:19:03 +0000 (10:49 +0930)
[  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>
drivers/vhost/vringh.c

index bff0775..5174eba 100644 (file)
@@ -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");