mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-29 07:33:29 +08:00
mkimage: Make 'params' static
This is not used outside mkimage.c, so make this variable static. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
1531034831
commit
cc7a64447b
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user