]> git.sur5r.net Git - u-boot/commitdiff
rockchip: Check image name for the rksd image
authorSimon Glass <sjg@chromium.org>
Sat, 14 May 2016 20:02:59 +0000 (14:02 -0600)
committerSimon Glass <sjg@chromium.org>
Fri, 27 May 2016 16:23:07 +0000 (10:23 -0600)
We need a correct name (rk3288, rk3036) so check this to avoid a crash
later.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/rkimage.c

index f9fdcfa712f00496a88404a0181f783b158859fa..ef31cb69444ec1573418769a84f94cd4e1d5917b 100644 (file)
 
 static uint32_t header;
 
-static int rkimage_check_params(struct image_tool_params *params)
-{
-       return 0;
-}
-
 static int rkimage_verify_header(unsigned char *buf, int size,
                                 struct image_tool_params *params)
 {
@@ -56,7 +51,7 @@ U_BOOT_IMAGE_TYPE(
        "Rockchip Boot Image support",
        4,
        &header,
-       rkimage_check_params,
+       rkcommon_check_params,
        rkimage_verify_header,
        rkimage_print_header,
        rkimage_set_header,