diff options
author | Sumit Garg <sumit.garg@nxp.com> | 2016-07-14 13:27:50 -0400 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-08-02 09:45:39 -0700 |
commit | 7fe1d6a41092da00e0a1b94ae0e996cf89e81e28 (patch) | |
tree | 169e7711a40436ff24bdec6582ea701cdb1d2466 /cmd | |
parent | 04e5c6d9cca668845f9f4b702f587c4dcc0ea4bd (diff) | |
download | u-boot-7fe1d6a41092da00e0a1b94ae0e996cf89e81e28.tar.gz u-boot-7fe1d6a41092da00e0a1b94ae0e996cf89e81e28.tar.xz u-boot-7fe1d6a41092da00e0a1b94ae0e996cf89e81e28.zip |
crypto/fsl: Update blob cmd to accept 64bit addresses
Update blob cmd to accept 64bit source, key modifier and destination
addresses. Also correct output result print format for fsl specific
implementation of blob cmd.
Signed-off-by: Sumit Garg <sumit.garg@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/blob.c b/cmd/blob.c index ac8b268e0b..bdd4cfda0b 100644 --- a/cmd/blob.c +++ b/cmd/blob.c @@ -54,7 +54,7 @@ __weak int blob_encap(u8 *key_mod, u8 *src, u8 *dst, u32 len) */ static int do_blob(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) { - uint32_t key_addr, src_addr, dst_addr, len; + ulong key_addr, src_addr, dst_addr, len; uint8_t *km_ptr, *src_ptr, *dst_ptr; int enc, ret = 0; |