diff options
| author | Ilias Apalodimas <[email protected]> | 2025-08-29 11:16:22 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-09 12:44:07 -0600 |
| commit | 1e73651a71d1cf2a718b9a8250a794d626b9eecb (patch) | |
| tree | 9753269d7505f2be5acaaa390d29ac7dac1bf82b /tools | |
| parent | f006837eada06cdf41b9935eb6c73618e4ae0bf0 (diff) | |
tools: imx8image: Mark imx8mimage_check_params() 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/imx8mimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/imx8mimage.c b/tools/imx8mimage.c index fe1aff35b4d..3e974923652 100644 --- a/tools/imx8mimage.c +++ b/tools/imx8mimage.c @@ -49,7 +49,7 @@ static uint32_t get_cfg_value(char *token, char *name, int linenr) return value; } -int imx8mimage_check_params(struct image_tool_params *params) +static int imx8mimage_check_params(struct image_tool_params *params) { return 0; } |
