mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
a250b9fdc5
This adds an initial framework to plug USB graphics devices into the drm/kms subsystem. I've started writing a displaylink driver using this interface. Signed-off-by: Dave Airlie <airlied@redhat.com>
15 lines
375 B
C
15 lines
375 B
C
#ifndef DRM_USB_H
|
|
#define DRM_USB_H
|
|
|
|
#include <drmP.h>
|
|
|
|
#include <linux/usb.h>
|
|
|
|
extern int drm_usb_init(struct drm_driver *driver, struct usb_driver *udriver);
|
|
extern void drm_usb_exit(struct drm_driver *driver, struct usb_driver *udriver);
|
|
|
|
int drm_get_usb_dev(struct usb_interface *interface,
|
|
const struct usb_device_id *id,
|
|
struct drm_driver *driver);
|
|
|
|
#endif
|