From: Simon Glass Date: Tue, 23 Feb 2016 05:55:38 +0000 (-0700) Subject: mkimage: Make 'params' static X-Git-Tag: v2016.05-rc1~484 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc7a64447bc3e90a8133b2fce98d7526089a7033;p=pandora-u-boot.git mkimage: Make 'params' static This is not used outside mkimage.c, so make this variable static. Signed-off-by: Simon Glass --- diff --git a/tools/mkimage.c b/tools/mkimage.c index bcf227272dd..e1900bd7ab1 100644 --- a/tools/mkimage.c +++ b/tools/mkimage.c @@ -15,7 +15,7 @@ static void copy_file(int, const char *, int); /* parameters initialized by core will be used by the image type code */ -struct image_tool_params params = { +static struct image_tool_params params = { .os = IH_OS_LINUX, .arch = IH_ARCH_PPC, .type = IH_TYPE_KERNEL,