[PATCH 2/3] romfs: switch to new MTD API
Artem Bityutskiy
dedekind1 at gmail.com
Mon Jan 30 09:24:06 EST 2012
From: Artem Bityutskiy <artem.bityutskiy at linux.intel.com>
We have changed the MTD API and now ROMFS should use 'mtd_read()' instead
of mtd->read().
Signed-off-by: Artem Bityutskiy <artem.bityutskiy at linux.intel.com>
---
fs/romfs/storage.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/fs/romfs/storage.c b/fs/romfs/storage.c
index 71e2b4d..f86f51f 100644
--- a/fs/romfs/storage.c
+++ b/fs/romfs/storage.c
@@ -19,7 +19,7 @@
#endif
#ifdef CONFIG_ROMFS_ON_MTD
-#define ROMFS_MTD_READ(sb, ...) ((sb)->s_mtd->read((sb)->s_mtd, ##__VA_ARGS__))
+#define ROMFS_MTD_READ(sb, ...) mtd_read((sb)->s_mtd, ##__VA_ARGS__)
/*
* read data from an romfs image on an MTD device
--
1.7.7.6
More information about the linux-mtd
mailing list