Skip to content
Snippets Groups Projects
Commit cc7a6444 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

mkimage: Make 'params' static


This is not used outside mkimage.c, so make this variable static.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 15310348
Branches
Tags
No related merge requests found
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
static void copy_file(int, const char *, int); static void copy_file(int, const char *, int);
/* parameters initialized by core will be used by the image type code */ /* 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, .os = IH_OS_LINUX,
.arch = IH_ARCH_PPC, .arch = IH_ARCH_PPC,
.type = IH_TYPE_KERNEL, .type = IH_TYPE_KERNEL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment