diff options
author | Simon Ser <contact@emersion.fr> | 2021-10-18 10:47:26 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-11-02 14:27:10 +0100 |
commit | 710074bb8ab0efac425a43473b8a3e057d645f82 (patch) | |
tree | 1264547ed93544ee8198a62d4364a135b704ead0 /include | |
parent | drm/sysfs: introduce drm_sysfs_connector_hotplug_event (diff) | |
download | linux-710074bb8ab0efac425a43473b8a3e057d645f82.tar.xz linux-710074bb8ab0efac425a43473b8a3e057d645f82.zip |
drm/probe-helper: add drm_kms_helper_connector_hotplug_event
This function is the same as drm_kms_helper_hotplug_event, but takes
a connector instead of a device.
Signed-off-by: Simon Ser <contact@emersion.fr>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Acked-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Pekka Paalanen <pekka.paalanen@collabora.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211018084707.32253-3-contact@emersion.fr
Diffstat (limited to 'include')
-rw-r--r-- | include/drm/drm_probe_helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/drm/drm_probe_helper.h b/include/drm/drm_probe_helper.h index 04c57564c397..48300aa6ca71 100644 --- a/include/drm/drm_probe_helper.h +++ b/include/drm/drm_probe_helper.h @@ -20,6 +20,7 @@ void drm_kms_helper_poll_fini(struct drm_device *dev); bool drm_helper_hpd_irq_event(struct drm_device *dev); bool drm_connector_helper_hpd_irq_event(struct drm_connector *connector); void drm_kms_helper_hotplug_event(struct drm_device *dev); +void drm_kms_helper_connector_hotplug_event(struct drm_connector *connector); void drm_kms_helper_poll_disable(struct drm_device *dev); void drm_kms_helper_poll_enable(struct drm_device *dev); |