From 0298d2037542b4f56124d29995dc7435c6af8bd1 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sun, 13 May 2018 00:22:54 +0200 Subject: fit: Add standalone image type handling Just add IH_TYPE_STANDALONE to fit_get_image_type_property(). Signed-off-by: Marek Vasut Cc: Pantelis Antoniou Cc: Simon Glass Reviewed-by: Simon Glass --- common/image-fit.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common') diff --git a/common/image-fit.c b/common/image-fit.c index e3577e2dd73..8c15ed1d96c 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -1725,6 +1725,8 @@ static const char *fit_get_image_type_property(int type) return FIT_LOADABLE_PROP; case IH_TYPE_FPGA: return FIT_FPGA_PROP; + case IH_TYPE_STANDALONE: + return FIT_STANDALONE_PROP; } return "unknown"; -- cgit v1.2.3