From: juhosg Date: Sun, 28 Oct 2012 12:24:34 +0000 (+0000) Subject: AA: ar71xx: use mtd_read in wrt160nl_part X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=9cb932a0880842a5d7c209ae18cf5841a7c5087d;p=12.09%2Fopenwrt.git AA: ar71xx: use mtd_read in wrt160nl_part Backport of r33951. Signed-off-by: Gabor Juhos git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@33973 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c b/target/linux/ar71xx/files/drivers/mtd/wrt160nl_part.c index 72927f6..1ced8ac 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;