]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/amdgpu: fix typo in the comment
authorYan Zhen <yanzhen@vivo.com>
Wed, 11 Sep 2024 04:27:38 +0000 (12:27 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 18 Sep 2024 20:14:26 +0000 (16:14 -0400)
Correctly spelled comments make it easier for the reader to understand
the code.

Replace 'udpate' with 'update' in the comment &
replace 'recieved' with 'received' in the comment &
replace 'dsiable' with 'disable' in the comment &
replace 'Initiailize' with 'Initialize' in the comment &
replace 'disble' with 'disable' in the comment &
replace 'Disbale' with 'Disable' in the comment &
replace 'enogh' with 'enough' in the comment &
replace 'availabe' with 'available' in the comment.

Acked-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Yan Zhen <yanzhen@vivo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_aca.c
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
drivers/gpu/drm/amd/amdgpu/imu_v11_0.c
drivers/gpu/drm/amd/amdgpu/nbio_v2_3.c
drivers/gpu/drm/amd/amdgpu/sdma_v3_0.c
drivers/gpu/drm/amd/amdgpu/smuio_v9_0.c

index 57bda66e85ef77305ae9a374e90eb9c6eccc313e..2ca12717313573ef537ec0d8370943ab7d08254b 100644 (file)
@@ -511,7 +511,7 @@ static int __aca_get_error_data(struct amdgpu_device *adev, struct aca_handle *h
                return -EINVAL;
        }
 
-       /* udpate aca bank to aca source error_cache first */
+       /* update aca bank to aca source error_cache first */
        ret = aca_banks_update(adev, smu_type, handler_aca_log_bank_error, qctx, NULL);
        if (ret)
                return ret;
index 189574d53ebd30a7d37f3c2748624f9262707fb3..e9e599ff3bd48877a9c6b73d5df6e9c9077f4603 100644 (file)
@@ -2853,7 +2853,7 @@ static int psp_load_non_psp_fw(struct psp_context *psp)
                if (ret)
                        return ret;
 
-               /* Start rlc autoload after psp recieved all the gfx firmware */
+               /* Start rlc autoload after psp received all the gfx firmware */
                if (psp->autoload_supported && ucode->ucode_id == (amdgpu_sriov_vf(adev) ?
                    adev->virt.autoload_ucode_id : AMDGPU_UCODE_ID_RLC_G)) {
                        ret = psp_rlc_autoload_start(psp);
index 2e4c867e1d424417aa29106849bc93e0b4d9a99e..1a1395c5fff15a5eb61b0bdcb9501af376b0c4c2 100644 (file)
@@ -882,7 +882,7 @@ int amdgpu_ras_feature_enable_on_boot(struct amdgpu_device *adev,
                        if (ret)
                                return ret;
 
-                       /* gfx block ras dsiable cmd must send to ras-ta */
+                       /* gfx block ras disable cmd must send to ras-ta */
                        if (head->block == AMDGPU_RAS_BLOCK__GFX)
                                con->features |= BIT(head->block);
 
index b8bc7fa8c3750396408204230df7a34756895e6a..74adb983ab03e0877286a6524c08623bd55f3584 100644 (file)
@@ -1970,7 +1970,7 @@ int amdgpu_ttm_init(struct amdgpu_device *adev)
        DRM_INFO("amdgpu: %uM of GTT memory ready.\n",
                 (unsigned int)(gtt_size / (1024 * 1024)));
 
-       /* Initiailize doorbell pool on PCI BAR */
+       /* Initialize doorbell pool on PCI BAR */
        r = amdgpu_ttm_init_on_chip(adev, AMDGPU_PL_DOORBELL, adev->doorbell.size / PAGE_SIZE);
        if (r) {
                DRM_ERROR("Failed initializing doorbell heap.\n");
index 6c1891889c4da891b7c2ad3fc63b5bf9afd8ba48..d4f72e47ae9e2082ae9041ad050b6fa559b00092 100644 (file)
@@ -153,7 +153,7 @@ static void imu_v11_0_setup(struct amdgpu_device *adev)
                WREG32_SOC15(GC, 0, regGFX_IMU_C2PMSG_16, imu_reg_val);
        }
 
-       //disble imu Rtavfs, SmsRepair, DfllBTC, and ClkB
+       //disable imu Rtavfs, SmsRepair, DfllBTC, and ClkB
        imu_reg_val = RREG32_SOC15(GC, 0, regGFX_IMU_SCRATCH_10);
        imu_reg_val |= 0x10007;
        WREG32_SOC15(GC, 0, regGFX_IMU_SCRATCH_10, imu_reg_val);
index fa479dfa1ec15552d1c26a3adb3cfee2fe76d49f..739fce4fa8fdfaf571d420fbdb63dc43284f89e9 100644 (file)
@@ -365,7 +365,7 @@ static void nbio_v2_3_enable_aspm(struct amdgpu_device *adev,
 
                data &= ~PCIE_LC_CNTL__LC_PMI_TO_L1_DIS_MASK;
        } else {
-               /* Disbale ASPM L1 */
+               /* Disable ASPM L1 */
                data &= ~PCIE_LC_CNTL__LC_L1_INACTIVITY_MASK;
                /* Disable ASPM TxL0s */
                data &= ~PCIE_LC_CNTL__LC_L0S_INACTIVITY_MASK;
index aa637541da5844181af63b6435452cba4d6fbc5d..e65194fe94af654188c183a8de41b9447312dfcc 100644 (file)
@@ -710,7 +710,7 @@ static int sdma_v3_0_gfx_resume(struct amdgpu_device *adev)
                       upper_32_bits(wptr_gpu_addr));
                wptr_poll_cntl = RREG32(mmSDMA0_GFX_RB_WPTR_POLL_CNTL + sdma_offsets[i]);
                if (ring->use_pollmem) {
-                       /*wptr polling is not enogh fast, directly clean the wptr register */
+                       /*wptr polling is not enough fast, directly clean the wptr register */
                        WREG32(mmSDMA0_GFX_RB_WPTR + sdma_offsets[i], 0);
                        wptr_poll_cntl = REG_SET_FIELD(wptr_poll_cntl,
                                                       SDMA0_GFX_RB_WPTR_POLL_CNTL,
index e4e30b9d481b4a098adc94e8365983943d6558cf..c04fdd2d5b389867a87e7e3897c213d50451f4bf 100644 (file)
@@ -60,7 +60,7 @@ static void smuio_v9_0_get_clock_gating_state(struct amdgpu_device *adev, u64 *f
 {
        u32 data;
 
-       /* CGTT_ROM_CLK_CTRL0 is not availabe for APUs */
+       /* CGTT_ROM_CLK_CTRL0 is not available for APUs */
        if (adev->flags & AMD_IS_APU)
                return;