diff options
author | Eduardo Habkost | 2020-09-08 19:36:50 +0200 |
---|---|---|
committer | Eduardo Habkost | 2020-09-08 23:29:18 +0200 |
commit | acbef3cc0cefae0af0263ad675445ebba5feb385 (patch) | |
tree | ce455fc4d4b8060665dc1b0f20c1f9cd47143a71 /include/exec | |
parent | Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2020-09-08' into ... (diff) | |
download | qemu-acbef3cc0cefae0af0263ad675445ebba5feb385.tar.gz qemu-acbef3cc0cefae0af0263ad675445ebba5feb385.tar.xz qemu-acbef3cc0cefae0af0263ad675445ebba5feb385.zip |
memory: Remove kernel-doc comment marker
The IOMMUMemoryRegionClass struct documentation was never in the
kernel-doc format. Stop pretending it is, by removing the "/**"
comment marker.
This fixes a documentation build error introduced when we split
the IOMMUMemoryRegionClass typedef from the struct declaration.
Reported-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200908173650.3293057-1-ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'include/exec')
-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 0cfe987ab4..90e2470054 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -216,7 +216,7 @@ enum IOMMUMemoryRegionAttr { IOMMU_ATTR_SPAPR_TCE_FD }; -/** +/* * IOMMUMemoryRegionClass: * * All IOMMU implementations need to subclass TYPE_IOMMU_MEMORY_REGION |