drm_sysfs.h 248 B

123456789101112
  1. #ifndef _DRM_SYSFS_H_
  2. #define _DRM_SYSFS_H_
  3. struct drm_device;
  4. struct device;
  5. int drm_class_device_register(struct device *dev);
  6. void drm_class_device_unregister(struct device *dev);
  7. void drm_sysfs_hotplug_event(struct drm_device *dev);
  8. #endif