diff options
author | Maxime Ripard <maxime@cerno.tech> | 2021-09-14 12:17:22 +0200 |
---|---|---|
committer | Maxime Ripard <maxime@cerno.tech> | 2021-09-28 12:17:25 +0200 |
commit | 7dad41aac5f3f0c2a8e5fada905f0b52df7c07a7 (patch) | |
tree | 4a03d3402aaa24108e89f3b03db2df3d5961cf65 /drivers/gpu/drm/drm_probe_helper.c | |
parent | b3ed524f84f573ece1aa2f26e9db3c34a593e0d1 (diff) |
drm/probe-helper: Document drm_helper_hpd_irq_event() return value
The documentation of the drm_helper_hpd_irq_event() function didn't
document the value that function was returning. Add that part as well.
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20210914101724.266570-1-maxime@cerno.tech
Diffstat (limited to 'drivers/gpu/drm/drm_probe_helper.c')
-rw-r--r-- | drivers/gpu/drm/drm_probe_helper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c index 5606bca3caa8..5b77fb5c1a32 100644 --- a/drivers/gpu/drm/drm_probe_helper.c +++ b/drivers/gpu/drm/drm_probe_helper.c @@ -817,6 +817,9 @@ EXPORT_SYMBOL(drm_kms_helper_poll_fini); * * Note that a connector can be both polled and probed from the hotplug handler, * in case the hotplug interrupt is known to be unreliable. + * + * Returns: + * A boolean indicating whether the connector status changed or not */ bool drm_helper_hpd_irq_event(struct drm_device *dev) { |