diff options
author | Alex Deucher <alexander.deucher@amd.com> | 2018-02-27 11:44:31 -0500 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-02-28 15:38:47 -0500 |
commit | d869ae092e39022c2bba81ea498abe74249a338c (patch) | |
tree | b6fbf58d875069fe4c81c26fe7692af921c1be63 /drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | |
parent | f8f4b9a679e52298b14358db22c37a135e7086ec (diff) |
drm/amdgpu: fix module parameter descriptions
Some were missing the close parens around options.
Reviewed-by: Christian König <christian.koenig@amd.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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c index 85ceed702fb2..e6709362994a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | |||
@@ -284,10 +284,10 @@ module_param_named(lbpw, amdgpu_lbpw, int, 0444); | |||
284 | MODULE_PARM_DESC(compute_multipipe, "Force compute queues to be spread across pipes (1 = enable, 0 = disable, -1 = auto)"); | 284 | MODULE_PARM_DESC(compute_multipipe, "Force compute queues to be spread across pipes (1 = enable, 0 = disable, -1 = auto)"); |
285 | module_param_named(compute_multipipe, amdgpu_compute_multipipe, int, 0444); | 285 | module_param_named(compute_multipipe, amdgpu_compute_multipipe, int, 0444); |
286 | 286 | ||
287 | MODULE_PARM_DESC(gpu_recovery, "Enable GPU recovery mechanism, (1 = enable, 0 = disable, -1 = auto"); | 287 | MODULE_PARM_DESC(gpu_recovery, "Enable GPU recovery mechanism, (1 = enable, 0 = disable, -1 = auto)"); |
288 | module_param_named(gpu_recovery, amdgpu_gpu_recovery, int, 0444); | 288 | module_param_named(gpu_recovery, amdgpu_gpu_recovery, int, 0444); |
289 | 289 | ||
290 | MODULE_PARM_DESC(emu_mode, "Emulation mode, (1 = enable, 0 = disable"); | 290 | MODULE_PARM_DESC(emu_mode, "Emulation mode, (1 = enable, 0 = disable)"); |
291 | module_param_named(emu_mode, amdgpu_emu_mode, int, 0444); | 291 | module_param_named(emu_mode, amdgpu_emu_mode, int, 0444); |
292 | 292 | ||
293 | #ifdef CONFIG_DRM_AMDGPU_SI | 293 | #ifdef CONFIG_DRM_AMDGPU_SI |