diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-27 18:49:29 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-27 18:49:29 -0700 |
commit | 23a3e178b9f8be3a900c7b11d795e54b4a131af0 (patch) | |
tree | 36555d6da836a1df9918313d2a1cbefba3ca2123 /drivers/mtd/ubi/vmt.c | |
parent | e0714ec4f9efe7b86828b0dcc077fd8f5d8e5e91 (diff) | |
parent | 1112018cefc586cba924770a2b28bff6d2f0aa5c (diff) | |
download | talos-op-linux-23a3e178b9f8be3a900c7b11d795e54b4a131af0.tar.gz talos-op-linux-23a3e178b9f8be3a900c7b11d795e54b4a131af0.zip |
Merge tag 'upstream-4.7-rc1' of git://git.infradead.org/linux-ubifs
Pull UBI/UBIFS updates from Richard Weinberger:
"This contains mostly cleanups and minor improvements of UBI and UBIFS"
* tag 'upstream-4.7-rc1' of git://git.infradead.org/linux-ubifs:
ubifs: ubifs_dump_inode: Fix dumping field bulk_read
UBI: Fix static volume checks when Fastmap is used
UBI: Set free_count to zero before walking through erase list
UBI: Silence an unintialized variable warning
UBI: Clean up return in ubi_remove_volume()
UBI: Modify wrong comment in ubi_leb_map function.
UBI: Don't read back all data in ubi_eba_copy_leb()
UBI: Add ro-mode sysfs attribute
Diffstat (limited to 'drivers/mtd/ubi/vmt.c')
-rw-r--r-- | drivers/mtd/ubi/vmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/vmt.c b/drivers/mtd/ubi/vmt.c index 1ae17bb9b889..10059dfdc1b6 100644 --- a/drivers/mtd/ubi/vmt.c +++ b/drivers/mtd/ubi/vmt.c @@ -405,7 +405,7 @@ int ubi_remove_volume(struct ubi_volume_desc *desc, int no_vtbl) if (!no_vtbl) self_check_volumes(ubi); - return err; + return 0; out_err: ubi_err(ubi, "cannot remove volume %d, error %d", vol_id, err); |