Skip to content

Commit abefe9f

Browse files
ColinIanKingalexdeucher
authored andcommitted
drm/amd/display: Fix spelling mistake "oustanding" -> "outstanding"
There is a spelling mistake in max_oustanding_when_urgent_expected, fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent a101fa7 commit abefe9f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_core/dml2_core_dcn4_calcs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5058,7 +5058,7 @@ static void CalculateExtraLatency(
50585058
double HostVMInefficiencyFactorPrefetch,
50595059
unsigned int HostVMMinPageSize,
50605060
enum dml2_qos_param_type qos_type,
5061-
bool max_oustanding_when_urgent_expected,
5061+
bool max_outstanding_when_urgent_expected,
50625062
unsigned int max_outstanding_requests,
50635063
unsigned int request_size_bytes_luma[],
50645064
unsigned int request_size_bytes_chroma[],
@@ -5106,7 +5106,7 @@ static void CalculateExtraLatency(
51065106
if (qos_type == dml2_qos_param_type_dcn4x) {
51075107
*ExtraLatency_sr = dchub_arb_to_ret_delay / DCFCLK;
51085108
*ExtraLatency = *ExtraLatency_sr;
5109-
if (max_oustanding_when_urgent_expected)
5109+
if (max_outstanding_when_urgent_expected)
51105110
*ExtraLatency = *ExtraLatency + (ROBBufferSizeInKByte * 1024 - max_outstanding_requests * max_request_size_bytes) / ReturnBW;
51115111
} else {
51125112
*ExtraLatency_sr = dchub_arb_to_ret_delay / DCFCLK + RoundTripPingLatencyCycles / FabricClock + ReorderingBytes / ReturnBW;
@@ -5121,7 +5121,7 @@ static void CalculateExtraLatency(
51215121
dml2_printf("DML::%s: qos_type=%u\n", __func__, qos_type);
51225122
dml2_printf("DML::%s: hostvm_mode=%u\n", __func__, hostvm_mode);
51235123
dml2_printf("DML::%s: Tex_trips=%u\n", __func__, Tex_trips);
5124-
dml2_printf("DML::%s: max_oustanding_when_urgent_expected=%u\n", __func__, max_oustanding_when_urgent_expected);
5124+
dml2_printf("DML::%s: max_outstanding_when_urgent_expected=%u\n", __func__, max_outstanding_when_urgent_expected);
51255125
dml2_printf("DML::%s: FabricClock=%f\n", __func__, FabricClock);
51265126
dml2_printf("DML::%s: DCFCLK=%f\n", __func__, DCFCLK);
51275127
dml2_printf("DML::%s: ReturnBW=%f\n", __func__, ReturnBW);

drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_core/dml2_core_shared_types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1571,7 +1571,7 @@ struct dml2_core_calcs_CalculateWatermarksMALLUseAndDRAMSpeedChangeSupport_param
15711571
unsigned int *DSTYAfterScaler;
15721572
bool UnboundedRequestEnabled;
15731573
unsigned int CompressedBufferSizeInkByte;
1574-
bool max_oustanding_when_urgent_expected;
1574+
bool max_outstanding_when_urgent_expected;
15751575
unsigned int max_outstanding_requests;
15761576
unsigned int max_request_size_bytes;
15771577
unsigned int *meta_row_height_l;

0 commit comments

Comments
 (0)