xilinx: zynq: Change types from u32 to uint32_t

Change parameter type to avoid compilation error:
In file included from ./tools/../lib/rsa/rsa-verify.c:23:0,
                 from tools/lib/rsa/rsa-verify.c:1:
include/u-boot/rsa-mod-exp.h:69:18: error: unknown type name ‘u32’; did you mean ‘__u32’?
 int zynq_pow_mod(u32 *keyptr, u32 *inout);
                  ^~~
                  __u32
include/u-boot/rsa-mod-exp.h:69:31: error: unknown type name ‘u32’; did you mean ‘__u32’?
 int zynq_pow_mod(u32 *keyptr, u32 *inout);
                               ^~~
                               __u32

Fixes: 37e3a36a54 ("xilinx: zynq: Add support to secure images")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
Michal Simek 2020-10-22 10:59:08 +02:00
parent a0c26f74a9
commit c2a2c83278
2 changed files with 2 additions and 2 deletions

View file

@ -66,7 +66,7 @@ int rsa_mod_exp(struct udevice *dev, const uint8_t *sig, uint32_t sig_len,
struct key_prop *node, uint8_t *out); struct key_prop *node, uint8_t *out);
#if defined(CONFIG_CMD_ZYNQ_RSA) #if defined(CONFIG_CMD_ZYNQ_RSA)
int zynq_pow_mod(u32 *keyptr, u32 *inout); int zynq_pow_mod(uint32_t *keyptr, uint32_t *inout);
#endif #endif
/** /**

View file

@ -321,7 +321,7 @@ int rsa_mod_exp_sw(const uint8_t *sig, uint32_t sig_len,
* pow_mod calculation required for zynq is bit different from * pow_mod calculation required for zynq is bit different from
* pw_mod above here, hence defined zynq specific routine. * pw_mod above here, hence defined zynq specific routine.
*/ */
int zynq_pow_mod(u32 *keyptr, u32 *inout) int zynq_pow_mod(uint32_t *keyptr, uint32_t *inout)
{ {
u32 *result, *ptr; u32 *result, *ptr;
uint i; uint i;