drm_sysfs.h 287 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _DRM_SYSFS_H_
  3. #define _DRM_SYSFS_H_
  4. struct drm_device;
  5. struct device;
  6. int drm_class_device_register(struct device *dev);
  7. void drm_class_device_unregister(struct device *dev);
  8. void drm_sysfs_hotplug_event(struct drm_device *dev);
  9. #endif