mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
e22717046a
- remove docs for internal func, doesn't add value - add short overview snippet instead explaining that drivers don't have to bother themselves with reg/unreg concerns - drop the ttm comment about drmP.h, drmP.h is disappearing ... Reviewed-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20170404095304.17599-2-daniel.vetter@ffwll.ch
13 lines
248 B
C
13 lines
248 B
C
#ifndef _DRM_SYSFS_H_
|
|
#define _DRM_SYSFS_H_
|
|
|
|
struct drm_device;
|
|
struct device;
|
|
|
|
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
|