diff options
| author | Dmitry Baryshkov <[email protected]> | 2024-12-14 13:37:09 +0000 |
|---|---|---|
| committer | Dmitry Baryshkov <[email protected]> | 2025-01-07 10:45:19 +0000 |
| commit | 26d6fd81916e62d2b0568d9756e5f9c33f0f9b7a (patch) | |
| tree | 3007928bcdc42597a6bbc967f7cce52d8346d6c6 /drivers/gpu/drm/amd/amdgpu/atombios_dp.h | |
| parent | drm/connector: make mode_valid_ctx take a const struct drm_display_mode (diff) | |
| download | kernel-26d6fd81916e62d2b0568d9756e5f9c33f0f9b7a.tar.gz kernel-26d6fd81916e62d2b0568d9756e5f9c33f0f9b7a.zip | |
drm/connector: make mode_valid take a const struct drm_display_mode
The mode_valid() callbacks of drm_encoder, drm_crtc and drm_bridge
take a const struct drm_display_mode argument. Change the mode_valid
callback of drm_connector to also take a const argument.
Acked-by: Jani Nikula <[email protected]>
Reviewed-by: Liviu Dudau <[email protected]>
Reviewed-by: Raphael Gallais-Pou <[email protected]>
Reviewed-by: Laurent Pinchart <[email protected]>
Reviewed-by: Lyude Paul <[email protected]>
Reviewed-by: Maxime Ripard <[email protected]>
Reviewed-by: Thomas Zimmermann <[email protected]>
Reviewed-by: Harry Wentland <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/20241214-drm-connector-mode-valid-const-v2-5-4f9498a4c822@linaro.org
Signed-off-by: Dmitry Baryshkov <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/atombios_dp.h')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/atombios_dp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/atombios_dp.h b/drivers/gpu/drm/amd/amdgpu/atombios_dp.h index f59d85eaddf0..3e24acf8133f 100644 --- a/drivers/gpu/drm/amd/amdgpu/atombios_dp.h +++ b/drivers/gpu/drm/amd/amdgpu/atombios_dp.h @@ -32,7 +32,7 @@ int amdgpu_atombios_dp_get_panel_mode(struct drm_encoder *encoder, void amdgpu_atombios_dp_set_link_config(struct drm_connector *connector, const struct drm_display_mode *mode); int amdgpu_atombios_dp_mode_valid_helper(struct drm_connector *connector, - struct drm_display_mode *mode); + const struct drm_display_mode *mode); bool amdgpu_atombios_dp_needs_link_train(struct amdgpu_connector *amdgpu_connector); void amdgpu_atombios_dp_set_rx_power_state(struct drm_connector *connector, u8 power_state); |
