xilinx: zynq: Change types from u32 to uint32_t
authorMichal Simek <michal.simek@xilinx.com>
Thu, 22 Oct 2020 08:59:08 +0000 (10:59 +0200)
committerMichal Simek <michal.simek@xilinx.com>
Tue, 27 Oct 2020 07:13:33 +0000 (08:13 +0100)
commitc2a2c83278666cacb85761b8db55a3de8031c459
treefb8daeaed716d0e76f03bd134b32d33c89e8fa73
parenta0c26f74a926a6d7e92f23d1a370940e6d4ffef4
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: 37e3a36a5475 ("xilinx: zynq: Add support to secure images")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
include/u-boot/rsa-mod-exp.h
lib/rsa/rsa-mod-exp.c