Skip to content

Commit ba6fdcf

Browse files
Amanda ButlerOren Cohen
authored andcommitted
Edit psa_defs.h
Make minor edits, mostly for consistent abbreviations.
1 parent b87ab25 commit ba6fdcf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/TARGET_PSA/spm/psa_defs.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ extern "C" {
4444
#endif
4545

4646
#define PSA_FRAMEWORK_VERSION (0x0009) /**< Version of the PSA Framework API. */
47-
#define PSA_VERSION_NONE (0L) /**< Identifier for an unimplemented RoT Service. */
47+
#define PSA_VERSION_NONE (0L) /**< Identifier for an unimplemented Rot of Trust (RoT) Service. */
4848

4949
#define PSA_NSPE_IDENTIFIER (-1L) /**< "Partition" identifier of the NSPE.*/
5050

@@ -68,7 +68,7 @@ extern "C" {
6868
#define PSA_IPC_VERSION (4) /**< The IPC message type that indicates a client query for a specific sid.*/
6969

7070
/* Error codes */
71-
#define PSA_DROP_CONNECTION (INT32_MIN) /**< The result code in a call to psa_reply() to indicate a non-recoverable error in the client.*/
71+
#define PSA_DROP_CONNECTION (INT32_MIN) /**< The result code in a call to psa_reply() to indicate a nonrecoverable error in the client.*/
7272
#define PSA_CONNECTION_REFUSED (INT32_MIN + 1) /**< The return value from psa_connect() if the RoT Service or SPM was unable to establish a connection.*/
7373

7474
#define PSA_UNUSED(var) ((void)(var))
@@ -83,7 +83,7 @@ typedef psa_error_t error_t;
8383
/* -------------------------------------- Structs ------------------------------------ */
8484

8585
/**
86-
* Structure containing the PSA IPC message sent from a client partition to a Root of Trust Service.
86+
* Structure containing the PSA IPC message sent from a client partition to an RoT Service.
8787
*/
8888
typedef struct psa_msg {
8989
uint32_t type; /**< The message type.*/
@@ -94,7 +94,7 @@ typedef struct psa_msg {
9494
} psa_msg_t;
9595

9696
/**
97-
* Structure which describes a scatter-gather input buffer.
97+
* Structure that describes a scatter-gather input buffer.
9898
*/
9999
typedef struct psa_invec {
100100
const void *base; /**< Starting address of the buffer.*/

0 commit comments

Comments
 (0)