[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250428001249.112238-1-rubenru09@aol.com>
Date: Mon, 28 Apr 2025 01:01:41 +0100
From: Ruben Wauters <rubenru09@....com>
To: Alex Deucher <alexander.deucher@....com>,
Christian König <christian.koenig@....com>,
David Airlie <airlied@...il.com>,
Simona Vetter <simona@...ll.ch>
Cc: Ruben Wauters <rubenru09@....com>,
amd-gfx@...ts.freedesktop.org,
dri-devel@...ts.freedesktop.org,
linux-doc@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] drm/amdgpu: fix unexpected indentation in docs
make htmldocs reports unexpected indentation on line 1119 in the kernel
doc comment. This was due to alignment of numbers (except the minus)
which caused indentation. This also had unintended effects on the
compiled documentation, with breaks and indentation after the -1 option.
This patch fixes the error, and changes the format of the options to be
more in line with others in the file, while still keeping it readable on
the code side.
Signed-off-by: Ruben Wauters <rubenru09@....com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
index b9a1ef343c79..6ddfd3ace2ba 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
@@ -1116,10 +1116,10 @@ module_param_named(rebar, amdgpu_rebar, int, 0444);
/**
* DOC: user_queue (int)
* Enable user queues on systems that support user queues.
- * -1 = auto (ASIC specific default)
- * 0 = user queues disabled
- * 1 = user queues enabled and kernel queues enabled (if supported)
- * 2 = user queues enabled and kernel queues disabled
+ * (-1 = auto (ASIC specific default),
+ * 0 = user queues disabled,
+ * 1 = user queues enabled and kernel queues enabled (if supported),
+ * 2 = user queues enabled and kernel queues disabled)
*/
MODULE_PARM_DESC(user_queue, "Enable user queues (-1 = auto (default), 0 = disable, 1 = enable, 2 = enable UQs and disable KQs)");
module_param_named(user_queue, amdgpu_user_queue, int, 0444);
--
2.48.1
Powered by blists - more mailing lists