drm/amd/display: Fix spelling mistake "oustanding" -> "outstanding"
authorColin Ian King <colin.i.king@gmail.com>
Mon, 17 Feb 2025 09:53:25 +0000 (09:53 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 25 Feb 2025 16:44:01 +0000 (11:44 -0500)
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>
drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_core/dml2_core_dcn4_calcs.c
drivers/gpu/drm/amd/display/dc/dml2/dml21/src/dml2_core/dml2_core_shared_types.h

index 78c93a50251800843dd2b5518ba7fc78a1646b04..4c33d99ca7e8190c5bc0be68bc609c0f48197f2c 100644 (file)
@@ -5058,7 +5058,7 @@ static void CalculateExtraLatency(
        double HostVMInefficiencyFactorPrefetch,
        unsigned int HostVMMinPageSize,
        enum dml2_qos_param_type qos_type,
-       bool max_oustanding_when_urgent_expected,
+       bool max_outstanding_when_urgent_expected,
        unsigned int max_outstanding_requests,
        unsigned int request_size_bytes_luma[],
        unsigned int request_size_bytes_chroma[],
@@ -5106,7 +5106,7 @@ static void CalculateExtraLatency(
        if (qos_type == dml2_qos_param_type_dcn4x) {
                *ExtraLatency_sr = dchub_arb_to_ret_delay / DCFCLK;
                *ExtraLatency = *ExtraLatency_sr;
-               if (max_oustanding_when_urgent_expected)
+               if (max_outstanding_when_urgent_expected)
                        *ExtraLatency = *ExtraLatency + (ROBBufferSizeInKByte * 1024 - max_outstanding_requests * max_request_size_bytes) / ReturnBW;
        } else {
                *ExtraLatency_sr = dchub_arb_to_ret_delay / DCFCLK + RoundTripPingLatencyCycles / FabricClock + ReorderingBytes / ReturnBW;
@@ -5121,7 +5121,7 @@ static void CalculateExtraLatency(
        dml2_printf("DML::%s: qos_type=%u\n", __func__, qos_type);
        dml2_printf("DML::%s: hostvm_mode=%u\n", __func__, hostvm_mode);
        dml2_printf("DML::%s: Tex_trips=%u\n", __func__, Tex_trips);
-       dml2_printf("DML::%s: max_oustanding_when_urgent_expected=%u\n", __func__, max_oustanding_when_urgent_expected);
+       dml2_printf("DML::%s: max_outstanding_when_urgent_expected=%u\n", __func__, max_outstanding_when_urgent_expected);
        dml2_printf("DML::%s: FabricClock=%f\n", __func__, FabricClock);
        dml2_printf("DML::%s: DCFCLK=%f\n", __func__, DCFCLK);
        dml2_printf("DML::%s: ReturnBW=%f\n", __func__, ReturnBW);
index dfe54112a9c61baa2a9d9e54ecadf5502c91f185..4e502f0a6d207116b791017225f471656a40ef7b 100644 (file)
@@ -1571,7 +1571,7 @@ struct dml2_core_calcs_CalculateWatermarksMALLUseAndDRAMSpeedChangeSupport_param
        unsigned int *DSTYAfterScaler;
        bool UnboundedRequestEnabled;
        unsigned int CompressedBufferSizeInkByte;
-       bool max_oustanding_when_urgent_expected;
+       bool max_outstanding_when_urgent_expected;
        unsigned int max_outstanding_requests;
        unsigned int max_request_size_bytes;
        unsigned int *meta_row_height_l;