diff options
author | Simon Glass | 2013-05-07 06:11:57 +0000 |
---|---|---|
committer | Tom Rini | 2013-05-14 15:37:25 -0400 |
commit | b8da8366500f7a88f1f5117f22f713fe920bcdd9 (patch) | |
tree | 1d318bff195eba6aa99b7cde7758c3f3641b2f38 /common/cmd_fpga.c | |
parent | b7260910dca95b8a608d3721e0584484e887d756 (diff) |
image: Rename fit_image_check_hashes() to fit_image_verify()
This is the main entry point to the FIT image verification code. We will
be using it to handle image verification with signatures, so rename the
function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'common/cmd_fpga.c')
-rw-r--r-- | common/cmd_fpga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_fpga.c b/common/cmd_fpga.c index 1834246f308..1341604c5c2 100644 --- a/common/cmd_fpga.c +++ b/common/cmd_fpga.c @@ -306,7 +306,7 @@ int do_fpga (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[]) } /* verify integrity */ - if (!fit_image_check_hashes (fit_hdr, noffset)) { + if (!fit_image_verify(fit_hdr, noffset)) { puts ("Bad Data Hash\n"); return 1; } |