diff options
Diffstat (limited to 'include/common/bl_common.h')
-rw-r--r-- | include/common/bl_common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/common/bl_common.h b/include/common/bl_common.h index b1a9c8f6..66244ca9 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -202,6 +202,15 @@ typedef struct bl31_params { image_info_t *bl33_image_info; } bl31_params_t; +/* + * load_auth_image() return values + */ +enum { + LOAD_SUCCESS, /* Load + authentication success */ + LOAD_ERR, /* Load error */ + LOAD_AUTH_ERR /* Authentication error */ +}; + /* * Compile time assertions related to the 'entry_point_info' structure to |