summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-10-27 07:57:58 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-10-27 07:57:58 +0000
commit269872fe1e2272567461978b2afc29fd794a5bc5 (patch)
tree301b650169deace76b96b44a922dff7911190103 /target/linux/ar71xx/files
parent973eda60779017bef8fc1b94344dbe3b0eaec081 (diff)
downloadmaster-31e0f0ae-269872fe1e2272567461978b2afc29fd794a5bc5.tar.gz
master-31e0f0ae-269872fe1e2272567461978b2afc29fd794a5bc5.tar.bz2
master-31e0f0ae-269872fe1e2272567461978b2afc29fd794a5bc5.zip
ar71xx: use mtd_read in wrt160nl_part
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 33951
Diffstat (limited to 'target/linux/ar71xx/files')
-rw-r--r--target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c b/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c
index 72927f6f25..1ced8acc7b 100644
--- a/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c
+++ b/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c
@@ -113,8 +113,8 @@ static int wrt160nl_parse_partitions(struct mtd_info *master,
goto free_parts;
}
- ret = master->read(master, uboot_len, sizeof(*header),
- &retlen, (void *) header);
+ ret = mtd_read(master, uboot_len, sizeof(*header),
+ &retlen, (void *) header);
if (ret)
goto free_hdr;