diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-01-19 21:28:22 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-01-19 21:28:22 +0000 |
commit | c8e7192064680ec3c44c6161312e93be6e871c83 (patch) | |
tree | 32050fb7d3fbb95737b2d13c8eb2f2935019d564 /package/mtd/src | |
parent | 10f41663ff11079a9333c592a0ad494d595ecaeb (diff) | |
download | upstream-c8e7192064680ec3c44c6161312e93be6e871c83.tar.gz upstream-c8e7192064680ec3c44c6161312e93be6e871c83.tar.bz2 upstream-c8e7192064680ec3c44c6161312e93be6e871c83.zip |
mtd: treat failure to open FIS partition as fatal when a fis_layout is given, aborts mtd write if reformat is needed and FIS table not available
SVN-Revision: 19231
Diffstat (limited to 'package/mtd/src')
-rw-r--r-- | package/mtd/src/fis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mtd/src/fis.c b/package/mtd/src/fis.c index f99101988d..3108c5a9e6 100644 --- a/package/mtd/src/fis.c +++ b/package/mtd/src/fis.c @@ -99,7 +99,7 @@ fis_validate(struct fis_part *old, int n_old, struct fis_part *new, int n_new) desc = fis_open(); if (!desc) - return 0; + return -1; for (i = 0; i < n_new - 1; i++) { if (!new[i].size) { |