diff options
author | Simon Glass <sjg@chromium.org> | 2016-02-22 22:55:38 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-14 14:19:11 -0400 |
commit | cc7a64447bc3e90a8133b2fce98d7526089a7033 (patch) | |
tree | d93323c0f5d5286c4dbc14345e5bafdd1448c947 /tools | |
parent | 1531034831b3098634b524b7e244f577fae21312 (diff) | |
download | talos-obmc-uboot-cc7a64447bc3e90a8133b2fce98d7526089a7033.tar.gz talos-obmc-uboot-cc7a64447bc3e90a8133b2fce98d7526089a7033.zip |
mkimage: Make 'params' static
This is not used outside mkimage.c, so make this variable static.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mkimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkimage.c b/tools/mkimage.c index bcf227272d..e1900bd7ab 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, |