Skip to content

Commit

Permalink
drm/usb: fix module license on drm/usb layer.
Browse files Browse the repository at this point in the history
Allows this module to load correctly with certain debugging options on.

Reported on irc by scientes
Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Apr 19, 2012
1 parent 5273db7 commit b10c6d4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion drivers/gpu/drm/drm_usb.c
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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");

0 comments on commit b10c6d4

Please sign in to comment.