diff options
| author | Pali Rohár <[email protected]> | 2021-08-02 15:18:35 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-09-17 12:10:44 -0400 |
| commit | 7629b52a949a13eefa31ef8979763591066d7b1d (patch) | |
| tree | 4d97db0eb80e66c6ae16dfdc54f4367e5ef7f272 /cmd | |
| parent | d502c5f3b479fa49b57d255d956d8b9528b64dce (diff) | |
version: Do not make version_string[] variable as a weak
There is no platform which needs to overload version_string[] variable, so
remove weak symbol mark.
Signed-off-by: Pali Rohár <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/version.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/version.c b/cmd/version.c index 965ac2e2144..2f9b8986554 100644 --- a/cmd/version.c +++ b/cmd/version.c @@ -13,7 +13,7 @@ #include <asm/cb_sysinfo.h> #endif -const char __weak version_string[] = U_BOOT_VERSION_STRING; +const char version_string[] = U_BOOT_VERSION_STRING; static int do_version(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
