diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-09-02 21:06:35 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-09-02 21:06:35 +0000 |
commit | 86193ba4cc756f80e391772428eadbeaf12253ca (patch) | |
tree | 06e95220e92c2de2e0a3bcbe7516aa85f057356d | |
parent | 72dd8201d2fc3ffcc1c24cc08c1e956b87680bac (diff) | |
download | upstream-86193ba4cc756f80e391772428eadbeaf12253ca.tar.gz upstream-86193ba4cc756f80e391772428eadbeaf12253ca.tar.bz2 upstream-86193ba4cc756f80e391772428eadbeaf12253ca.zip |
mtd: disable trx_check() for ar71xx, fixes a regression introduced in r42403
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42405 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/system/mtd/src/trx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/system/mtd/src/trx.c b/package/system/mtd/src/trx.c index 86d62fc19e..089d1ace46 100644 --- a/package/system/mtd/src/trx.c +++ b/package/system/mtd/src/trx.c @@ -101,6 +101,7 @@ err: return -1; } +#ifndef target_ar71xx int trx_check(int imagefd, const char *mtd, char *buf, int *len) { @@ -141,6 +142,7 @@ trx_check(int imagefd, const char *mtd, char *buf, int *len) close(fd); return 1; } +#endif int mtd_fixtrx(const char *mtd, size_t offset) |