diff options
Diffstat (limited to 'drm_sysfs.h')
-rw-r--r-- | drm_sysfs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drm_sysfs.h b/drm_sysfs.h index 1d8e033..70c9a10 100644 --- a/drm_sysfs.h +++ b/drm_sysfs.h @@ -1,12 +1,12 @@ #ifndef _DRM_SYSFS_H_ #define _DRM_SYSFS_H_ -/** - * This minimalistic include file is intended for users (read TTM) that - * don't want to include the full drmP.h file. - */ +struct drm_device; +struct device; -extern int drm_class_device_register(struct device *dev); -extern void drm_class_device_unregister(struct device *dev); +int drm_class_device_register(struct device *dev); +void drm_class_device_unregister(struct device *dev); + +void drm_sysfs_hotplug_event(struct drm_device *dev); #endif |