diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2024-09-30 13:21:05 +0200 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2024-10-15 10:21:11 +0200 |
commit | 7fd9aeb07f83d871e861d152fbc62a6ced0f70d1 (patch) | |
tree | ee32f5cdcb2860ec9c4981cb3728d6ae40be5871 | |
parent | 8e929cb546ee42c9a61d24fae60605e9e3192354 (diff) |
iommu: 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-20-Julia.Lawall@inria.fr
Signed-off-by: Joerg Roedel <jroedel@suse.de>
-rw-r--r-- | drivers/iommu/iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c index 83c8e617a2c5..ce72edd34f07 100644 --- a/drivers/iommu/iommu.c +++ b/drivers/iommu/iommu.c @@ -2216,8 +2216,8 @@ EXPORT_SYMBOL_GPL(iommu_attach_group); /** * iommu_group_replace_domain - replace the domain that a group is attached to - * @new_domain: new IOMMU domain to replace with * @group: IOMMU group that will be attached to the new domain + * @new_domain: new IOMMU domain to replace with * * This API allows the group to switch domains without being forced to go to * the blocking domain in-between. |