From: "Nautiyal, Ankit K" <ankit.k.nautiyal@intel.com>
To: Animesh Manna <animesh.manna@intel.com>,
<intel-gfx@lists.freedesktop.org>
Cc: <jani.nikula@intel.com>, <ville.syrjala@linux.intel.com>,
<jouni.hogander@intel.com>, <arun.r.murthy@intel.com>,
<mitulkumar.ajitkumar.golani@intel.com>
Subject: Re: [PATCH v9 2/3] drm/i915/lobf: No need to pass connector-state on lobf-compute-config.
Date: Mon, 2 Sep 2024 14:05:56 +0530 [thread overview]
Message-ID: <affecbf2-3617-4e2b-b838-5c887a979f23@intel.com> (raw)
In-Reply-To: <20240708152231.4170265-2-animesh.manna@intel.com>
On 7/8/2024 8:52 PM, Animesh Manna wrote:
> Coonector state is not used in lobf compute config, so removed it.
nitpick: s/coonector/connector and s/removed/remove
Add fixes tag.
With above fixed:
Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
>
> Signed-off-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_alpm.c | 3 +--
> drivers/gpu/drm/i915/display/intel_alpm.h | 3 +--
> drivers/gpu/drm/i915/display/intel_dp.c | 2 +-
> 3 files changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.c b/drivers/gpu/drm/i915/display/intel_alpm.c
> index 866b3b409c4d..021e970d8209 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.c
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.c
> @@ -266,8 +266,7 @@ bool intel_alpm_compute_params(struct intel_dp *intel_dp,
> }
>
> void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
> - struct intel_crtc_state *crtc_state,
> - struct drm_connector_state *conn_state)
> + struct intel_crtc_state *crtc_state)
> {
> struct drm_i915_private *i915 = dp_to_i915(intel_dp);
> struct drm_display_mode *adjusted_mode = &crtc_state->hw.adjusted_mode;
> diff --git a/drivers/gpu/drm/i915/display/intel_alpm.h b/drivers/gpu/drm/i915/display/intel_alpm.h
> index 8c409b10dce6..a17dfaa5248d 100644
> --- a/drivers/gpu/drm/i915/display/intel_alpm.h
> +++ b/drivers/gpu/drm/i915/display/intel_alpm.h
> @@ -17,8 +17,7 @@ void intel_alpm_init_dpcd(struct intel_dp *intel_dp);
> bool intel_alpm_compute_params(struct intel_dp *intel_dp,
> const struct intel_crtc_state *crtc_state);
> void intel_alpm_lobf_compute_config(struct intel_dp *intel_dp,
> - struct intel_crtc_state *crtc_state,
> - struct drm_connector_state *conn_state);
> + struct intel_crtc_state *crtc_state);
> void intel_alpm_configure(struct intel_dp *intel_dp,
> const struct intel_crtc_state *crtc_state);
> void intel_alpm_lobf_debugfs_add(struct intel_connector *connector);
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index 3903f6ead6e6..8feec90538ae 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -3009,7 +3009,7 @@ intel_dp_compute_config(struct intel_encoder *encoder,
> intel_vrr_compute_config(pipe_config, conn_state);
> intel_dp_compute_as_sdp(intel_dp, pipe_config);
> intel_psr_compute_config(intel_dp, pipe_config, conn_state);
> - intel_alpm_lobf_compute_config(intel_dp, pipe_config, conn_state);
> + intel_alpm_lobf_compute_config(intel_dp, pipe_config);
> intel_dp_drrs_compute_config(connector, pipe_config, link_bpp_x16);
> intel_dp_compute_vsc_sdp(intel_dp, pipe_config, conn_state);
> intel_dp_compute_hdr_metadata_infoframe_sdp(intel_dp, pipe_config, conn_state);
next prev parent reply other threads:[~2024-09-02 11:55 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-08 15:22 [PATCH v9 1/3] drm/i915/panelreplay: Panel replay workaround with VRR Animesh Manna
2024-07-08 15:22 ` [PATCH v9 2/3] drm/i915/lobf: No need to pass connector-state on lobf-compute-config Animesh Manna
2024-09-02 8:35 ` Nautiyal, Ankit K [this message]
2024-07-08 15:22 ` [PATCH v9 3/3] drm/i915/lobf: Move Lobf compute config after vblank adjustement Animesh Manna
2024-09-02 12:08 ` Jani Nikula
2024-07-08 16:31 ` ✗ Fi.CI.SPARSE: warning for series starting with [v9,1/3] drm/i915/panelreplay: Panel replay workaround with VRR Patchwork
2024-07-08 16:39 ` ✓ Fi.CI.BAT: success " Patchwork
2024-07-09 10:47 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-09-02 8:27 ` [PATCH v9 1/3] " Nautiyal, Ankit K
2024-09-02 12:05 ` Jani Nikula
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=affecbf2-3617-4e2b-b838-5c887a979f23@intel.com \
--to=ankit.k.nautiyal@intel.com \
--cc=animesh.manna@intel.com \
--cc=arun.r.murthy@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=jouni.hogander@intel.com \
--cc=mitulkumar.ajitkumar.golani@intel.com \
--cc=ville.syrjala@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox