diff options
| author | Wadim Egorov <[email protected]> | 2025-03-05 05:58:35 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-03-18 08:12:53 -0600 |
| commit | cc5c55567e3abeaa64b632375c1faa9bd09d6472 (patch) | |
| tree | 53cbdebd5606889b14808fc91c0123e1423c4115 | |
| parent | 61b907e9370f36b29845a8262489a49410828ca6 (diff) | |
board: phytec: common: k3: Make configure_capsule_updates() static
This function is only used in the board.c file. Make it static.
Signed-off-by: Wadim Egorov <[email protected]>
| -rw-r--r-- | board/phytec/common/k3/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/phytec/common/k3/board.c b/board/phytec/common/k3/board.c index 9d833456810..7d2146d5727 100644 --- a/board/phytec/common/k3/board.c +++ b/board/phytec/common/k3/board.c @@ -48,7 +48,7 @@ struct efi_capsule_update_info update_info = { * Note: Currently, eMMC hardware partitions are not differentiated; Updates * are always applied to the first boot partition. */ -void configure_capsule_updates(void) +static void configure_capsule_updates(void) { static char dfu_string[128] = { 0 }; const char *dfu_raw = "tiboot3.bin raw 0x0 0x400 mmcpart 1;" |
