mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
spl: fit: improve spl_nand_fit_read(...) readability
Replacing the ret variable with err and handling first the error condition about the value returned by the spl_nand_fit_read routine, improves the code readability. Furthermore, the 'else' int the 'else return ret' instruction was useless. cc: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by: Dario Binacchi <dariobin@libero.it>
This commit is contained in:
parent
9f6a14c47f
commit
84dd190244
1 changed files with 5 additions and 5 deletions
|
@ -43,15 +43,15 @@ static ulong spl_nand_fit_read(struct spl_load_info *load, ulong offs,
|
|||
ulong size, void *dst)
|
||||
{
|
||||
ulong sector;
|
||||
int ret;
|
||||
int err;
|
||||
|
||||
sector = *(int *)load->priv;
|
||||
offs = sector + nand_spl_adjust_offset(sector, offs - sector);
|
||||
ret = nand_spl_load_image(offs, size, dst);
|
||||
if (!ret)
|
||||
return size;
|
||||
else
|
||||
err = nand_spl_load_image(offs, size, dst);
|
||||
if (err)
|
||||
return 0;
|
||||
|
||||
return size;
|
||||
}
|
||||
|
||||
static int spl_nand_load_element(struct spl_image_info *spl_image,
|
||||
|
|
Loading…
Reference in a new issue