diff options
author | Bernhard Beschow <shentey@gmail.com> | 2023-03-15 08:25:52 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2023-03-16 10:31:25 +0100 |
commit | afa55c6e247463254d7181153f93a4a1efdf34e7 (patch) | |
tree | 8397c993334c51d5f8906b374f9530f914181cd2 /include | |
parent | 652737c8090eb3792f8b4c4b22ab12d7cc32073f (diff) | |
download | qemu-afa55c6e247463254d7181153f93a4a1efdf34e7.zip qemu-afa55c6e247463254d7181153f93a4a1efdf34e7.tar.gz qemu-afa55c6e247463254d7181153f93a4a1efdf34e7.tar.bz2 |
exec/memory: Fix kernel-doc warning
During build the kernel-doc script complains about the following issue:
src/docs/../include/exec/memory.h:1741: warning: Function parameter or member 'n' not described in 'memory_region_unmap_iommu_notifier_range'
src/docs/../include/exec/memory.h:1741: warning: Excess function parameter 'notifier' description in 'memory_region_unmap_iommu_notifier_range'
Settle on "notifier" for consistency with other memory functions.
Fixes: 7caebbf9ea53
("memory: introduce memory_region_unmap_iommu_notifier_range()")
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230315072552.47117-1-shentey@gmail.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index 6fa0b07..15ade91 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -1738,7 +1738,7 @@ void memory_region_notify_iommu_one(IOMMUNotifier *notifier, * * @notifier: the notifier to be notified */ -void memory_region_unmap_iommu_notifier_range(IOMMUNotifier *n); +void memory_region_unmap_iommu_notifier_range(IOMMUNotifier *notifier); /** |