mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/i915: reorder if chain to have last gen first
Reorder if/else so we check for gen >= 11 first, similar to most of other checks in the driver. Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190404230426.15837-3-lucas.demarchi@intel.com
This commit is contained in:
parent
fcfec1fc98
commit
323b0a82ef
1 changed files with 6 additions and 5 deletions
|
@ -4360,15 +4360,16 @@ skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
|
|||
return 0;
|
||||
}
|
||||
|
||||
if (INTEL_GEN(dev_priv) < 11)
|
||||
if (INTEL_GEN(dev_priv) >= 11)
|
||||
total_data_rate =
|
||||
icl_get_total_relative_data_rate(cstate,
|
||||
plane_data_rate);
|
||||
else
|
||||
total_data_rate =
|
||||
skl_get_total_relative_data_rate(cstate,
|
||||
plane_data_rate,
|
||||
uv_plane_data_rate);
|
||||
else
|
||||
total_data_rate =
|
||||
icl_get_total_relative_data_rate(cstate,
|
||||
plane_data_rate);
|
||||
|
||||
|
||||
skl_ddb_get_pipe_allocation_limits(dev_priv, cstate, total_data_rate,
|
||||
ddb, alloc, &num_active);
|
||||
|
|
Loading…
Add table
Reference in a new issue