mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00: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
12 lines
248 B
C
12 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
|