diff --git a/doc/sof.doxygen.in b/doc/sof.doxygen.in index 6379da500f11..a54481858b31 100644 --- a/doc/sof.doxygen.in +++ b/doc/sof.doxygen.in @@ -10,7 +10,8 @@ INPUT = @top_srcdir@/src/include/ipc \ @top_srcdir@/src/include/kernel \ @top_srcdir@/src/include/user \ @top_srcdir@/src/include/sof \ - @top_srcdir@/xtos/include + @top_srcdir@/xtos/include \ + @top_srcdir@/zephyr/include # Exlude some 3rd party codec headers with external references EXCLUDE = @top_srcdir@/src/include/sof/audio/MaxxEffect RECURSIVE = YES diff --git a/zephyr/include/rtos/userspace_helper.h b/zephyr/include/rtos/userspace_helper.h index 20fb7bd40876..b29d2daa57c0 100644 --- a/zephyr/include/rtos/userspace_helper.h +++ b/zephyr/include/rtos/userspace_helper.h @@ -95,7 +95,7 @@ int user_stack_free(void *p_stack); /** * Free private processing module heap. - * @param sys_heap pointer to the sys_heap structure. + * @param mod_drv_heap pointer to the k_heap structure. * * @note * Function used only when CONFIG_USERSPACE is set. diff --git a/zephyr/include/sof/lib/regions_mm.h b/zephyr/include/sof/lib/regions_mm.h index abaaf158d3d4..6a22bfe7fd92 100644 --- a/zephyr/include/sof/lib/regions_mm.h +++ b/zephyr/include/sof/lib/regions_mm.h @@ -49,17 +49,9 @@ */ #define DEFAULT_CONFIG_ALOCATORS_COUNT 5 -/** @struct vmh_block_bundle_descriptor - * - * @brief This is a struct describing one bundle of blocks - * used as base for allocators blocks. - * - * @var block_size size of memory block. - * @var number_of_blocks number of memory blocks. - */ struct vmh_block_bundle_descriptor { - size_t block_size; - size_t number_of_blocks; + size_t block_size; /**< size of memory block. */ + size_t number_of_blocks; /**< number of memory blocks. */ }; /* @@ -75,8 +67,6 @@ struct vmh_block_bundle_descriptor { * Provided config size must be physical page aligned so it * will not overlap in physical space with other heaps during mapping. * So every block has to have its overall size aligned to CONFIG_MM_DRV_PAGE_SIZE - * - * @vmh_block_bundle_descriptor[] aggregation of bundle descriptors. */ struct vmh_heap_config { struct vmh_block_bundle_descriptor block_bundles_table[MAX_MEMORY_ALLOCATORS_COUNT];