mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
romfs: switch to new MTD API
We have changed the MTD API and now ROMFS should use 'mtd_read()' instead of mtd->read(). Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
f02654504d
commit
c382fb43df
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user