Skip to content
Snippets Groups Projects
Commit 30491fc8 authored by Khoronzhuk, Ivan's avatar Khoronzhuk, Ivan Committed by Tom Rini
Browse files

ks2_evm: board: remove sprintf for simple string


There is no reason to sprintf simple string.

Signed-off-by: default avatarIvan Khoronzhuk <ivan.khoronzhuk@ti.com>
parent 15bbafad
No related branches found
No related tags found
No related merge requests found
...@@ -122,7 +122,6 @@ void ft_board_setup(void *blob, bd_t *bd) ...@@ -122,7 +122,6 @@ void ft_board_setup(void *blob, bd_t *bd)
int nbanks; int nbanks;
u64 size[2]; u64 size[2];
u64 start[2]; u64 start[2];
char name[32];
int nodeoffset; int nodeoffset;
u32 ddr3a_size; u32 ddr3a_size;
int unitrd_fixup = 0; int unitrd_fixup = 0;
...@@ -158,15 +157,13 @@ void ft_board_setup(void *blob, bd_t *bd) ...@@ -158,15 +157,13 @@ void ft_board_setup(void *blob, bd_t *bd)
} }
/* reserve memory at start of bank */ /* reserve memory at start of bank */
sprintf(name, "mem_reserve_head"); env = getenv("mem_reserve_head");
env = getenv(name);
if (env) { if (env) {
start[0] += ustrtoul(env, &endp, 0); start[0] += ustrtoul(env, &endp, 0);
size[0] -= ustrtoul(env, &endp, 0); size[0] -= ustrtoul(env, &endp, 0);
} }
sprintf(name, "mem_reserve"); env = getenv("mem_reserve");
env = getenv(name);
if (env) if (env)
size[0] -= ustrtoul(env, &endp, 0); size[0] -= ustrtoul(env, &endp, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment