aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-11-26 10:02:28 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-11-26 15:54:40 -0500
commit3198ec5dfc7207b7977c8258f7d07fe423d7dfcd (patch)
treed011153ff8211640e6ac9da49e7b1275a698a619 /drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
parent77f6916aee7a66c8153b54c52c01453b71906d2d (diff)
drm/amdgpu: fix spelling mistake "Pramater" -> "Parameter"
There is a spelling mistake in the module description text and a comment too, fix them. Also line break overly long comment. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index 1d7f1bfaad1f..90f474f98b6e 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -454,9 +454,10 @@ module_param_named(cntl_sb_buf_per_se, amdgpu_cntl_sb_buf_per_se, int, 0444);
454 454
455/** 455/**
456 * DOC: param_buf_per_se (int) 456 * DOC: param_buf_per_se (int)
457 * Override the size of Off-Chip Pramater Cache per Shader Engine in Byte. The default is 0 (depending on gfx). 457 * Override the size of Off-Chip Parameter Cache per Shader Engine in Byte.
458 * The default is 0 (depending on gfx).
458 */ 459 */
459MODULE_PARM_DESC(param_buf_per_se, "the size of Off-Chip Pramater Cache per Shader Engine (default depending on gfx)"); 460MODULE_PARM_DESC(param_buf_per_se, "the size of Off-Chip Parameter Cache per Shader Engine (default depending on gfx)");
460module_param_named(param_buf_per_se, amdgpu_param_buf_per_se, int, 0444); 461module_param_named(param_buf_per_se, amdgpu_param_buf_per_se, int, 0444);
461 462
462/** 463/**