diff options
| author | Dave Airlie <airlied@redhat.com> | 2012-04-19 09:33:32 +0100 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2012-04-19 09:33:32 +0100 | 
| commit | b10c6d4b50cbbdccce2187c1ccc516a9c7335835 (patch) | |
| tree | d4c91637312c1621835142e866db1d7aa6b070d0 /drivers/gpu/drm/drm_usb.c | |
| parent | 5273db706f8b673902638fee7f907909ed6ae3f9 (diff) | |
| download | olio-linux-3.10-b10c6d4b50cbbdccce2187c1ccc516a9c7335835.tar.xz olio-linux-3.10-b10c6d4b50cbbdccce2187c1ccc516a9c7335835.zip  | |
drm/usb: fix module license on drm/usb layer.
Allows this module to load correctly with certain debugging options on.
Reported on irc by scientes
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/drm_usb.c')
| -rw-r--r-- | drivers/gpu/drm/drm_usb.c | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_usb.c b/drivers/gpu/drm/drm_usb.c index c8c83dad2ce..37c9a523dd1 100644 --- a/drivers/gpu/drm/drm_usb.c +++ b/drivers/gpu/drm/drm_usb.c @@ -1,6 +1,6 @@  #include "drmP.h"  #include <linux/usb.h> -#include <linux/export.h> +#include <linux/module.h>  int drm_get_usb_dev(struct usb_interface *interface,  		    const struct usb_device_id *id, @@ -114,3 +114,7 @@ void drm_usb_exit(struct drm_driver *driver,  	usb_deregister(udriver);  }  EXPORT_SYMBOL(drm_usb_exit); + +MODULE_AUTHOR("David Airlie"); +MODULE_DESCRIPTION("USB DRM support"); +MODULE_LICENSE("GPL and additional rights");  |