Commit 12db36bc authored by Sean Paul's avatar Sean Paul

drm: Fix kerneldoc warns in connector-related docs

Fixes the following warnings:
../drivers/gpu/drm/drm_connector.c:989: WARNING: Unexpected indentation.
../drivers/gpu/drm/drm_connector.c:993: WARNING: Unexpected indentation.
../include/drm/drm_connector.h:544: WARNING: Inline interpreted text or phrase reference start-string without end-string.
../include/drm/drm_connector.h:544: WARNING: Inline interpreted text or phrase reference start-string without end-string.

Changes in v2:
- Use () instead of & for functions (Sam)

Fixes: 1b27fbdd ("drm: Add drm_atomic_get_(old|new)_connector_for_encoder() helpers")
Fixes: bb5a45d4 ("drm/hdcp: update content protection property with uevent")
Cc: Ramalingam C <ramalingam.c@intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Pekka Paalanen <pekka.paalanen@collabora.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Sean Paul <seanpaul@chromium.org>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <maxime.ripard@bootlin.com>
Cc: Sean Paul <sean@poorly.run>
Cc: David Airlie <airlied@linux.ie>
Cc: dri-devel@lists.freedesktop.org
Reviewed-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarSean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190812140112.6702-1-sean@poorly.run
parent c550b60c
...@@ -986,12 +986,14 @@ static const struct drm_prop_enum_list hdmi_colorspaces[] = { ...@@ -986,12 +986,14 @@ static const struct drm_prop_enum_list hdmi_colorspaces[] = {
* - Kernel sends uevent with the connector id and property id through * - Kernel sends uevent with the connector id and property id through
* @drm_hdcp_update_content_protection, upon below kernel triggered * @drm_hdcp_update_content_protection, upon below kernel triggered
* scenarios: * scenarios:
* DESIRED -> ENABLED (authentication success) *
* ENABLED -> DESIRED (termination of authentication) * - DESIRED -> ENABLED (authentication success)
* - ENABLED -> DESIRED (termination of authentication)
* - Please note no uevents for userspace triggered property state changes, * - Please note no uevents for userspace triggered property state changes,
* which can't fail such as * which can't fail such as
* DESIRED/ENABLED -> UNDESIRED *
* UNDESIRED -> DESIRED * - DESIRED/ENABLED -> UNDESIRED
* - UNDESIRED -> DESIRED
* - Userspace is responsible for polling the property or listen to uevents * - Userspace is responsible for polling the property or listen to uevents
* to determine when the value transitions from ENABLED to DESIRED. * to determine when the value transitions from ENABLED to DESIRED.
* This signifies the link is no longer protected and userspace should * This signifies the link is no longer protected and userspace should
......
...@@ -543,8 +543,8 @@ struct drm_connector_state { ...@@ -543,8 +543,8 @@ struct drm_connector_state {
* *
* This is also used in the atomic helpers to map encoders to their * This is also used in the atomic helpers to map encoders to their
* current and previous connectors, see * current and previous connectors, see
* &drm_atomic_get_old_connector_for_encoder() and * drm_atomic_get_old_connector_for_encoder() and
* &drm_atomic_get_new_connector_for_encoder(). * drm_atomic_get_new_connector_for_encoder().
* *
* NOTE: Atomic drivers must fill this out (either themselves or through * NOTE: Atomic drivers must fill this out (either themselves or through
* helpers), for otherwise the GETCONNECTOR and GETENCODER IOCTLs will * helpers), for otherwise the GETCONNECTOR and GETENCODER IOCTLs will
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment