diff options
author | Juan Castillo <jcastillo.devel@gmail.com> | 2015-10-01 18:37:40 +0100 |
---|---|---|
committer | Juan Castillo <juan.castillo@arm.com> | 2015-10-23 16:57:52 +0100 |
commit | 78460a05e4504c861708f19812f8cb1710a99edc (patch) | |
tree | bcbb19352ff5a688929e0dead3858423822f5a7d /include/common | |
parent | 7e26fe1f05bb05ce6e0f95b9a44ada2a21d53dd3 (diff) |
Use standard errno definitions in load_auth_image()
This patch replaces custom definitions used as return values for
the load_auth_image() function with standard error codes defined
in errno.h. The custom definitions have been removed.
It also replaces the usage of IO framework error custom definitions,
which have been deprecated. Standard errno definitions are used
instead.
Change-Id: I1228477346d3876151c05b470d9669c37fd231be
Diffstat (limited to 'include/common')
-rw-r--r-- | include/common/bl_common.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/common/bl_common.h b/include/common/bl_common.h index 164377f6..c687b354 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -202,15 +202,6 @@ 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 |