diff options
Diffstat (limited to 'tools/rkcommon.h')
-rw-r--r-- | tools/rkcommon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/rkcommon.h b/tools/rkcommon.h index 93518824a5..49b6df3185 100644 --- a/tools/rkcommon.h +++ b/tools/rkcommon.h @@ -19,7 +19,7 @@ enum { /** * rkcommon_check_params() - check params * - * @return 0 if OK, -1 if ERROR. + * Return: 0 if OK, -1 if ERROR. */ int rkcommon_check_params(struct image_tool_params *params); @@ -56,7 +56,7 @@ void rkcommon_set_header(void *buf, struct stat *sbuf, int ifd, * * @buf: Pointer to the image file * @file_size: Size of entire bootable image file (incl. all padding) - * @return 0 if OK + * Return: 0 if OK */ int rkcommon_verify_header(unsigned char *buf, int size, struct image_tool_params *params); @@ -76,7 +76,7 @@ void rkcommon_print_header(const void *buf); * Some socs cannot disable the rc4-encryption of the spl binary. * rc4 encryption is disabled normally except on socs that cannot * handle unencrypted binaries. - * @return true or false depending on rc4 being required. + * Return: true or false depending on rc4 being required. */ bool rkcommon_need_rc4_spl(struct image_tool_params *params); @@ -99,7 +99,7 @@ void rkcommon_rc4_encode_spl(void *buf, unsigned int offset, unsigned int size); * @tparams: Pointer tot the image type structure (for setting * the header and header_size) * - * @return 0 (always) + * Return: 0 (always) */ int rkcommon_vrec_header(struct image_tool_params *params, struct image_type_params *tparams); |