Skip to content

Commit 06ca0b2

Browse files
Fix Doxygen references
Pass doxygen.sh
1 parent b5b1061 commit 06ca0b2

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

include/psa/crypto_se_driver.h

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ typedef struct {
6565
*
6666
* The size of this buffer is given by psa_drv_se_t::persistent_data_size
6767
* when the driver is registered, and this value is also recorded in the
68-
* ::persistent_data_size field of this structure.
68+
* psa_drv_se_context_t::persistent_data_size field of this structure.
6969
*
7070
* Before the driver is initialized for the first time, the content of
7171
* the persistent data is all-bits-zero. After a driver upgrade, if the
@@ -979,21 +979,26 @@ typedef struct {
979979
/** Function that allocates a slot for a key.
980980
*
981981
* The core calls this function to determine a slot number, then
982-
* calls the actual creation function (such as ::p_import or
983-
* ::p_generate).
982+
* calls the actual creation function (such as
983+
* psa_drv_se_key_management_t::p_import or
984+
* psa_drv_se_key_management_t::p_generate).
984985
*
985986
* If this function succeeds, the next call that the core makes to the
986-
* driver is either the creation function or ::p_destroy. Note that
987+
* driver is either the creation function or
988+
* psa_drv_se_key_management_t::p_destroy. Note that
987989
* if the platform is reset after this function returns, the core
988-
* may either subsequently call ::p_destroy or may behave as if the
989-
* last call to this function had not taken place.
990+
* may either subsequently call psa_drv_se_key_management_t::p_destroy
991+
* or may behave as if the last call to this function had not taken place.
990992
*/
991993
psa_drv_se_allocate_key_t p_allocate;
992994
/** Function that allocates a slot.
993995
*
994-
* The core calls this function instead of ::p_allocate to create
996+
* The core calls this function instead of
997+
* psa_drv_se_key_management_t::p_allocate to create
995998
* a key in a specific slot. It then calls the actual creation function
996-
* (such as ::p_import or ::p_generate) or ::p_destroy.
999+
* (such as psa_drv_se_key_management_t::p_import or
1000+
* psa_drv_se_key_management_t::p_generate) or
1001+
* psa_drv_se_key_management_t::p_destroy.
9971002
*/
9981003
psa_drv_se_check_key_slot_validity_t p_check_slot;
9991004
/** Function that performs a key import operation */

0 commit comments

Comments
 (0)