doc: edac: Do not include hidden API

Exclude hidden API marking them with INTERNAL_HIDDEN.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
Andrei Emeltchenko 2023-11-01 14:09:18 +02:00 committed by Carles Cufí
parent f776188344
commit 44e4425ef7

View file

@ -16,8 +16,6 @@
#include <sys/types.h>
typedef void (*edac_notify_callback_f)(const struct device *dev, void *data);
/**
* @defgroup edac EDAC API
* @ingroup io_interfaces
@ -34,6 +32,14 @@ enum edac_error_type {
EDAC_ERROR_TYPE_DRAM_UC = BIT(1)
};
/**
* @cond INTERNAL_HIDDEN
*
* For internal use only, skip these in public documentation.
*/
typedef void (*edac_notify_callback_f)(const struct device *dev, void *data);
/**
* @brief EDAC driver API
*
@ -64,6 +70,10 @@ __subsystem struct edac_driver_api {
edac_notify_callback_f cb);
};
/**
* INTERNAL_HIDDEN @endcond
*/
/* Optional interfaces */
/**