Skip to content
Snippets Groups Projects
Commit fbc1c8f6 authored by Peter Tyser's avatar Peter Tyser Committed by Wolfgang Denk
Browse files

tools/mkimage: Remove duplicate line of code


Recent commits 1a99de2c and
6a590c5f both fixed the same bug in the
same manner.  Unfortunately git was "smart" enough to merge both changes
which resulted in some duplicate code.

Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>

Reordered code and comment a bit.

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent df002fa6
No related branches found
No related tags found
No related merge requests found
......@@ -229,15 +229,13 @@ main (int argc, char **argv)
case 'f':
if (--argc <= 0)
usage ();
params.type = IH_TYPE_FLATDT;
params.datafile = *++argv;
params.fflag = 1;
/*
* The flattened image tree (FIT) format
* requires a flattened device tree image type
*/
params.type = IH_TYPE_FLATDT;
params.datafile = *++argv;
params.fflag = 1;
goto NXTARG;
case 'n':
if (--argc <= 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