adm5120: use mtd_read helper in trxsplit.c

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 34949
master
Gabor Juhos 12 years ago
parent e1b13e15b2
commit 03e09078dc
  1. 3
      target/linux/adm5120/files/drivers/mtd/trxsplit.c

@ -53,8 +53,7 @@ static int trxsplit_checktrx(struct mtd_info *mtd, unsigned long offset)
size_t retlen;
int err;
err = mtd->read(mtd, offset, sizeof(trx_hdr), &retlen,
(void *)&trx_hdr);
err = mtd_read(mtd, offset, sizeof(trx_hdr), &retlen, (void *)&trx_hdr);
if (err) {
printk(KERN_ALERT PFX "unable to read from '%s'\n", mtd->name);
goto err_out;

Loading…
Cancel
Save