mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 11:31:31 +00:00
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>
This commit is contained in:
parent
e6957c99dc
commit
1e756248be
@ -562,8 +562,8 @@ int cdev_device_add(struct cdev *cdev, struct device *dev)
|
||||
|
||||
/**
|
||||
* cdev_device_del() - inverse of cdev_device_add
|
||||
* @dev: the device structure
|
||||
* @cdev: the cdev structure
|
||||
* @dev: the device structure
|
||||
*
|
||||
* cdev_device_del() is a helper function to call cdev_del and device_del.
|
||||
* It should be used whenever cdev_device_add is used.
|
||||
|
@ -2049,8 +2049,8 @@ EXPORT_SYMBOL(d_obtain_root);
|
||||
|
||||
/**
|
||||
* d_add_ci - lookup or allocate new dentry with case-exact name
|
||||
* @inode: the inode case-insensitive lookup has found
|
||||
* @dentry: the negative dentry that was passed to the parent's lookup func
|
||||
* @inode: the inode case-insensitive lookup has found
|
||||
* @name: the case-exact name to be associated with the returned dentry
|
||||
*
|
||||
* This is to avoid filling the dcache with case-insensitive names to the
|
||||
@ -2103,8 +2103,8 @@ EXPORT_SYMBOL(d_add_ci);
|
||||
|
||||
/**
|
||||
* d_same_name - compare dentry name with case-exact name
|
||||
* @parent: parent dentry
|
||||
* @dentry: the negative dentry that was passed to the parent's lookup func
|
||||
* @parent: parent dentry
|
||||
* @name: the case-exact name to be associated with the returned dentry
|
||||
*
|
||||
* Return: true if names are same, or false
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user