mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-05-02 18:15:03 -04:00
mtd: do not use mtd->sync directly
This patch teaches 'mtd_sync()' to do nothing when the MTD driver does not have the '->sync()' method, which allows us to remove all direct 'mtd->sync' accesses. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
committed by
David Woodhouse
parent
1dbebd3256
commit
327cf2922b
@@ -714,9 +714,7 @@ int ubi_sync(int ubi_num)
|
||||
if (!ubi)
|
||||
return -ENODEV;
|
||||
|
||||
if (ubi->mtd->sync)
|
||||
mtd_sync(ubi->mtd);
|
||||
|
||||
mtd_sync(ubi->mtd);
|
||||
ubi_put_device(ubi);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user