aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/drm_usb.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2012-03-16 05:28:03 -0400
committerDave Airlie <airlied@redhat.com>2012-03-16 05:28:03 -0400
commit2de6d4a9e46c9bb038e9970628ed4b8e199ffda3 (patch)
treeb30bd0efa71a0047569aecd839d68a160e4061b2 /drivers/gpu/drm/drm_usb.c
parent5320918b9a87865223fd6b228e530bf30bc64d9d (diff)
drm: fix build with UDL if USB is a module
reported by sfr on -next merge. 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.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_usb.c b/drivers/gpu/drm/drm_usb.c
index 445003f4dc93..c8c83dad2ce1 100644
--- a/drivers/gpu/drm/drm_usb.c
+++ b/drivers/gpu/drm/drm_usb.c
@@ -2,7 +2,6 @@
2#include <linux/usb.h> 2#include <linux/usb.h>
3#include <linux/export.h> 3#include <linux/export.h>
4 4
5#ifdef CONFIG_USB
6int drm_get_usb_dev(struct usb_interface *interface, 5int drm_get_usb_dev(struct usb_interface *interface,
7 const struct usb_device_id *id, 6 const struct usb_device_id *id,
8 struct drm_driver *driver) 7 struct drm_driver *driver)
@@ -115,4 +114,3 @@ void drm_usb_exit(struct drm_driver *driver,
115 usb_deregister(udriver); 114 usb_deregister(udriver);
116} 115}
117EXPORT_SYMBOL(drm_usb_exit); 116EXPORT_SYMBOL(drm_usb_exit);
118#endif