diff options
author | John Crispin <john@openwrt.org> | 2015-03-11 15:56:27 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-11 15:56:27 +0000 |
commit | 69955cf733736cf1b6916213b9263150963073fb (patch) | |
tree | f3ffccd36007ce4debb5a04c94e9a636fa693e2e /target/linux | |
parent | e5373f2761544b3a0bef395b7239dfb281bc8211 (diff) | |
download | mtk-20170518-69955cf733736cf1b6916213b9263150963073fb.zip mtk-20170518-69955cf733736cf1b6916213b9263150963073fb.tar.gz mtk-20170518-69955cf733736cf1b6916213b9263150963073fb.tar.bz2 |
ar71xx: generalize cybertan partition parser
By removing the NL16 signature check, the parser can be
utilized by other devices like the WD My Net Wi-fi Range
Extender.
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
SVN-Revision: 44664
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/files/drivers/mtd/cybertan_part.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/target/linux/ar71xx/files/drivers/mtd/cybertan_part.c b/target/linux/ar71xx/files/drivers/mtd/cybertan_part.c index e03967a..7c6dad8 100644 --- a/target/linux/ar71xx/files/drivers/mtd/cybertan_part.c +++ b/target/linux/ar71xx/files/drivers/mtd/cybertan_part.c @@ -123,12 +123,6 @@ static int cybertan_parse_partitions(struct mtd_info *master, goto free_hdr; } - if (strncmp(header->cybertan.magic, "NL16", 4) != 0) { - printk(KERN_NOTICE "%s: no WRT160NL signature found\n", - master->name); - goto free_hdr; - } - theader = &header->trx; if (le32_to_cpu(theader->magic) != TRX_MAGIC) { printk(KERN_NOTICE "%s: no TRX header found\n", master->name); |