2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2009-08-17 16:28:37 +02:00
|
|
|
#ifndef _DRM_SYSFS_H_
|
|
|
|
|
#define _DRM_SYSFS_H_
|
|
|
|
|
|
2017-04-04 11:52:55 +02:00
|
|
|
struct drm_device;
|
|
|
|
|
struct device;
|
2019-08-01 17:11:16 +05:30
|
|
|
struct drm_connector;
|
|
|
|
|
struct drm_property;
|
2009-08-17 16:28:37 +02:00
|
|
|
|
2017-03-22 09:36:02 +01:00
|
|
|
int drm_class_device_register(struct device *dev);
|
|
|
|
|
void drm_class_device_unregister(struct device *dev);
|
2009-08-17 16:28:37 +02:00
|
|
|
|
2017-04-04 11:52:55 +02:00
|
|
|
void drm_sysfs_hotplug_event(struct drm_device *dev);
|
2021-10-18 08:47:25 +00:00
|
|
|
void drm_sysfs_connector_hotplug_event(struct drm_connector *connector);
|
2023-06-20 17:42:42 +00:00
|
|
|
void drm_sysfs_connector_property_event(struct drm_connector *connector,
|
|
|
|
|
struct drm_property *property);
|
2009-08-17 16:28:37 +02:00
|
|
|
#endif
|