projects
/
releases.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
GNU Linux-libre 4.19.211-gnu1
[releases.git]
/
include
/
drm
/
drm_sysfs.h
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _DRM_SYSFS_H_
3
#define _DRM_SYSFS_H_
4
5
struct drm_device;
6
struct device;
7
8
int drm_class_device_register(struct device *dev);
9
void drm_class_device_unregister(struct device *dev);
10
11
void drm_sysfs_hotplug_event(struct drm_device *dev);
12
13
#endif