diff options
author | Randy Dunlap | 2012-02-01 19:04:02 -0800 |
---|---|---|
committer | Linus Torvalds | 2012-02-01 18:29:33 -0800 |
commit | da46d7dd530c5af7cff049145f0c088f5e75bdc6 (patch) | |
tree | e771bd6b789aa959e76894127e10e16b08bc25c7 | |
parent | 13405059e8148259a0d5b66f42e93d641a63e66a (diff) |
staging: fix go7007-usb license
Add MODULE_LICENSE() as per the license in the comment at the top of the
file for this source module to fix build warning:
WARNING: modpost: missing MODULE_LICENSE() in drivers/staging/media/go7007/go7007-usb.o
see include/linux/module.h for more information
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Cc: Ross Cohen <rcohen@snurgle.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/staging/media/go7007/go7007-usb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/media/go7007/go7007-usb.c b/drivers/staging/media/go7007/go7007-usb.c index 70e006b50f29..5443e25086e9 100644 --- a/drivers/staging/media/go7007/go7007-usb.c +++ b/drivers/staging/media/go7007/go7007-usb.c @@ -1279,3 +1279,4 @@ static struct usb_driver go7007_usb_driver = { }; module_usb_driver(go7007_usb_driver); +MODULE_LICENSE("GPL v2"); |