diff options
Diffstat (limited to 'tools/zynqimage.c')
-rw-r--r-- | tools/zynqimage.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/tools/zynqimage.c b/tools/zynqimage.c index b47132b02a..43876e7a30 100644 --- a/tools/zynqimage.c +++ b/tools/zynqimage.c @@ -225,26 +225,16 @@ static int zynqimage_check_image_types(uint8_t type) static void zynqimage_parse_initparams(struct zynq_header *zynqhdr, const char *filename) { - FILE *fp; + /* Expect a table of register-value pairs, e.g. "0x12345678 0x4321" */ + FILE *fp = fopen(filename, "r"); struct zynq_reginit reginit; unsigned int reg_count = 0; - int r, err; - struct stat path_stat; + int r; - /* Expect a table of register-value pairs, e.g. "0x12345678 0x4321" */ - fp = fopen(filename, "r"); if (!fp) { fprintf(stderr, "Cannot open initparams file: %s\n", filename); exit(1); } - - err = fstat(fileno(fp), &path_stat); - if (err) - return; - - if (!S_ISREG(path_stat.st_mode)) - return; - do { r = fscanf(fp, "%x %x", ®init.address, ®init.data); if (r == 2) { |