trusty/apploader: Add missing doc for enum value

Document the APPLOADER_ERR_POLICY_VIOLATION value in enum
apploader_error.

Bug: 208968719
Change-Id: Ia9b17f4ea705d13567b2ba74f2dcd6df5a0c7d73
(cherry picked from commit c5253819f8)
Merged-In: Ia9b17f4ea705d13567b2ba74f2dcd6df5a0c7d73
This commit is contained in:
Per Larsen 2022-08-20 23:13:54 -07:00 committed by Armelle Laine
parent b0bb60cb16
commit 63818fc16d

View file

@ -45,6 +45,9 @@ enum apploader_command : uint32_t {
* @APPLOADER_ERR_INTERNAL: miscellaneous or internal apploader * @APPLOADER_ERR_INTERNAL: miscellaneous or internal apploader
* error not covered by the above * error not covered by the above
* @APPLOADER_ERR_INVALID_VERSION: invalid application version * @APPLOADER_ERR_INVALID_VERSION: invalid application version
* @APPLOADER_ERR_POLICY_VIOLATION: signature verification succeeded but
* key+manifest combination not allowed
* by app loader policy engine
*/ */
enum apploader_error : uint32_t { enum apploader_error : uint32_t {
APPLOADER_NO_ERROR = 0, APPLOADER_NO_ERROR = 0,