Commit 1343282 1 parent 96db951 commit 1343282 Copy full SHA for 1343282
File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -71,9 +71,10 @@ struct user_ta_store_ops {
71
71
/*
72
72
* user_ta_store_ops instances are kept in a list ordered by priority.
73
73
* Higher priority instances are tried first when a TA is looked up.
74
+ * @priority lower value means higher priority
74
75
*/
75
76
SLIST_ENTRY (user_ta_store_ops ) link ;
76
- int priority ; /* Lower value means higher priority */
77
+ int priority ;
77
78
};
78
79
79
80
TEE_Result elf_load_init (const struct user_ta_store_ops * ta_store ,
Original file line number Diff line number Diff line change @@ -606,7 +606,7 @@ TEE_Result tee_ta_register_ta_store(struct user_ta_store_ops *ops)
606
606
SLIST_FOREACH (e , & uta_store_list , link ) {
607
607
/*
608
608
* Do not allow equal priorities to avoid any dependency on
609
- * registration order
609
+ * registration order.
610
610
*/
611
611
assert (e -> priority != ops -> priority );
612
612
if (e -> priority > ops -> priority )
You can’t perform that action at this time.
0 commit comments