aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/fs/seq_file.c
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@inria.fr>2024-09-30 13:20:54 +0200
committerChristian Brauner <brauner@kernel.org>2024-10-22 11:16:57 +0200
commit1e756248be2aa03188a9700da5feb3d3f3c91eed (patch)
tree70601b4074b1d566611629d4c500de9535e89b91 /fs/seq_file.c
parentvfs: Add a sysctl for automated deletion of dentry (diff)
downloadwireguard-linux-1e756248be2aa03188a9700da5feb3d3f3c91eed.tar.xz
wireguard-linux-1e756248be2aa03188a9700da5feb3d3f3c91eed.zip
fs: Reorganize kerneldoc parameter names
Reorganize kerneldoc parameter names to match the parameter order in the function header. Problems identified using Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr> Link: https://lore.kernel.org/r/20240930112121.95324-9-Julia.Lawall@inria.fr Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to '')
-rw-r--r--fs/seq_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c
index e676c8b0cf5d..8bbb1ad46335 100644
--- a/fs/seq_file.c
+++ b/fs/seq_file.c
@@ -343,8 +343,8 @@ EXPORT_SYMBOL(seq_lseek);
/**
* seq_release - free the structures associated with sequential file.
- * @file: file in question
* @inode: its inode
+ * @file: file in question
*
* Frees the structures associated with sequential file; can be used
* as ->f_op->release() if you don't have private data to destroy.