diff options
| author | Ilias Apalodimas <[email protected]> | 2025-08-29 11:16:19 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-09 12:44:07 -0600 |
| commit | 5ab15814e8f051968a4da8c96339ff0c80c5f811 (patch) | |
| tree | 779c1fe400597c49a51bd3904225001b24e73929 /tools | |
| parent | 3ae031135da1f21ec22e20fac5d7ba9776487166 (diff) | |
tool: fit_info: Mark usage() as static
The function is only used locally. Enabling -Wmissing-prototypes
triggers a warning. Mark it as static.
Signed-off-by: Ilias Apalodimas <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/fit_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fit_info.c b/tools/fit_info.c index b2642ec5b76..c9e4236d09f 100644 --- a/tools/fit_info.c +++ b/tools/fit_info.c @@ -26,7 +26,7 @@ #include <image.h> #include <u-boot/crc.h> -void usage(char *cmdname) +static void usage(char *cmdname) { fprintf(stderr, "Usage: %s -f fit file -n node -p property\n" " -f ==> set fit file which is used'\n" |
