From: Dave Jones Date: Fri, 3 May 2013 20:40:09 +0000 (-0400) Subject: Add missing module license tag to vring helpers. X-Git-Tag: v3.10-rc2~37^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f558a845c3a043d032bb247cdbe50db9202476a1;p=thirdparty%2Flinux.git Add missing module license tag to vring helpers. [ 624.286653] vringh: module license 'unspecified' taints kernel. Signed-off-by: Dave Jones Signed-off-by: Rusty Russell --- diff --git a/drivers/vhost/vringh.c b/drivers/vhost/vringh.c index bff0775e258c9..5174ebac288d6 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 #include #include #include @@ -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");