Skip to content

Commit f5d8e16

Browse files
Colin Ian Kingalexdeucher
authored andcommitted
drm/amdgpu/swsmu: fix spelling mistake "minimun" -> "minimum"
There are three identical spelling mistakes in dev_err messages. Fix these. Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
1 parent b3dc549 commit f5d8e16

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

drivers/gpu/drm/amd/pm/swsmu/smu11/vangogh_ppt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1869,7 +1869,7 @@ static int vangogh_od_edit_dpm_table(struct smu_context *smu, enum PP_OD_DPM_TAB
18691869
} else {
18701870
if (smu->gfx_actual_hard_min_freq > smu->gfx_actual_soft_max_freq) {
18711871
dev_err(smu->adev->dev,
1872-
"The setting minimun sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
1872+
"The setting minimum sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
18731873
smu->gfx_actual_hard_min_freq,
18741874
smu->gfx_actual_soft_max_freq);
18751875
return -EINVAL;

drivers/gpu/drm/amd/pm/swsmu/smu12/renoir_ppt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ static int renoir_od_edit_dpm_table(struct smu_context *smu,
426426
} else {
427427
if (smu->gfx_actual_hard_min_freq > smu->gfx_actual_soft_max_freq) {
428428
dev_err(smu->adev->dev,
429-
"The setting minimun sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
429+
"The setting minimum sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
430430
smu->gfx_actual_hard_min_freq,
431431
smu->gfx_actual_soft_max_freq);
432432
return -EINVAL;

drivers/gpu/drm/amd/pm/swsmu/smu13/yellow_carp_ppt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ static int yellow_carp_od_edit_dpm_table(struct smu_context *smu, enum PP_OD_DPM
731731
} else {
732732
if (smu->gfx_actual_hard_min_freq > smu->gfx_actual_soft_max_freq) {
733733
dev_err(smu->adev->dev,
734-
"The setting minimun sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
734+
"The setting minimum sclk (%d) MHz is greater than the setting maximum sclk (%d) MHz\n",
735735
smu->gfx_actual_hard_min_freq,
736736
smu->gfx_actual_soft_max_freq);
737737
return -EINVAL;

0 commit comments

Comments
 (0)