mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-30 08:07:59 +00:00
api: remove superfluous assignment
No need to assign a value to sig if the next statement using sig is itself an assignment of a value to sig. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ebb3e43de4
commit
5cc9e6b7fa
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ int syscall(int call, int *retval, ...)
|
||||||
|
|
||||||
void api_init(void)
|
void api_init(void)
|
||||||
{
|
{
|
||||||
struct api_signature *sig = NULL;
|
struct api_signature *sig;
|
||||||
|
|
||||||
/* TODO put this into linker set one day... */
|
/* TODO put this into linker set one day... */
|
||||||
calls_table[API_RSVD] = NULL;
|
calls_table[API_RSVD] = NULL;
|
||||||
|
|
Loading…
Add table
Reference in a new issue