diff options
| author | Dinh Nguyen <dinguyen@kernel.org> | 2025-11-14 12:58:14 -0600 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-11-24 17:49:12 +0100 |
| commit | 36b1cb4f33e77eae456e33c72534b9c7917c4a07 (patch) | |
| tree | 41afc9adb3de734b3b40c1c9d0da8e5a6eb66127 /drivers/firmware | |
| parent | 3e92fdae7fa4e88466dbb0c21dbb0a9660962da9 (diff) | |
firmware: stratix-svc: fix make htmldocs warning
Stephen Rothwell reports htmldocs warnings when merging char-misc tree:
WARNING: drivers/firmware/stratix10-svc.c:58 This comment starts with '/**',
but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Total number of transaction IDs, which is a combination of
WARNING: drivers/firmware/stratix10-svc.c:302 This comment starts with '/**',
but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* svc_mem_lock protects access to the svc_data_mem list for
Fixes: bcb9f4f07061 ("firmware: stratix10-svc: Add support for async communication")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/linux-next/20251114153347.16001109@canb.auug.org.au/
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Link: https://patch.msgid.link/20251114185815.358423-2-dinguyen@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firmware')
| -rw-r--r-- | drivers/firmware/stratix10-svc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/stratix10-svc.c b/drivers/firmware/stratix10-svc.c index 3acfa067c5dd..08ed1b40bcfc 100644 --- a/drivers/firmware/stratix10-svc.c +++ b/drivers/firmware/stratix10-svc.c @@ -55,7 +55,7 @@ #define MAX_SDM_JOB_IDS 16 /* Number of bits used for asynchronous transaction hashing. */ #define ASYNC_TRX_HASH_BITS 3 -/** +/* * Total number of transaction IDs, which is a combination of * client ID and job ID. */ @@ -297,7 +297,7 @@ struct stratix10_svc_chan { static LIST_HEAD(svc_ctrl); static LIST_HEAD(svc_data_mem); -/** +/* * svc_mem_lock protects access to the svc_data_mem list for * concurrent multi-client operations */ |
