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>
This commit is contained in:
parent
5273db706f
commit
b10c6d4b50
1 changed files with 5 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
#include "drmP.h"
|
#include "drmP.h"
|
||||||
#include <linux/usb.h>
|
#include <linux/usb.h>
|
||||||
#include <linux/export.h>
|
#include <linux/module.h>
|
||||||
|
|
||||||
int drm_get_usb_dev(struct usb_interface *interface,
|
int drm_get_usb_dev(struct usb_interface *interface,
|
||||||
const struct usb_device_id *id,
|
const struct usb_device_id *id,
|
||||||
|
@ -114,3 +114,7 @@ void drm_usb_exit(struct drm_driver *driver,
|
||||||
usb_deregister(udriver);
|
usb_deregister(udriver);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(drm_usb_exit);
|
EXPORT_SYMBOL(drm_usb_exit);
|
||||||
|
|
||||||
|
MODULE_AUTHOR("David Airlie");
|
||||||
|
MODULE_DESCRIPTION("USB DRM support");
|
||||||
|
MODULE_LICENSE("GPL and additional rights");
|
||||||
|
|
Loading…
Reference in a new issue