doc: move closing markers before endif

Move the closing markers in the '#define .. #endif' to match the opening
markers.

Tracked-On: #8665
Signed-off-by: Haiwei Li <haiwei.li@intel.com>
This commit is contained in:
Haiwei Li 2024-09-02 11:14:32 +08:00
parent fa1f2ba7df
commit fc163ff04a
4 changed files with 10 additions and 9 deletions

View File

@ -132,8 +132,9 @@ struct page_pool {
struct page *alloc_page(struct page_pool *pool);
void free_page(struct page_pool *pool, struct page *page);
#endif /* PAGE_H */
/**
* @}
*/
*/
#endif /* PAGE_H */

View File

@ -553,8 +553,8 @@ void pgtable_add_map(uint64_t *pml4_page, uint64_t paddr_base,
void pgtable_modify_or_del_map(uint64_t *pml4_page, uint64_t vaddr_base,
uint64_t size, uint64_t prot_set, uint64_t prot_clr,
const struct pgtable *table, uint32_t type);
#endif /* PGTABLE_H */
/**
* @}
*/
*/
#endif /* PGTABLE_H */

View File

@ -74,8 +74,7 @@ struct acrn_vrtc {
struct rtcdev rtcdev; /**< Register layout of RTC. */
};
#endif /* VRTC_H */
/**
* @}
*/
*/
#endif /* VRTC_H */

View File

@ -119,8 +119,9 @@ bool is_vuart_intx(const struct acrn_vm *vm, uint32_t intx_gsi);
uint8_t vuart_read_reg(struct acrn_vuart *vu, uint16_t offset);
void vuart_write_reg(struct acrn_vuart *vu, uint16_t offset, uint8_t value);
#endif /* VUART_H */
/**
* @}
*/
*/
#endif /* VUART_H */