aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/routerboot.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-13 19:13:33 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-05-13 19:13:33 +0000
commita968eee7209287197b2716a41495687917774d39 (patch)
tree435394cb095364d72c68a99d169733756d5ecef9 /target/linux/ar71xx/files/arch/mips/ath79/routerboot.h
parent6d845ff8380f1890c28544bfe0341f2dee11bd57 (diff)
downloadmaster-187ad058-a968eee7209287197b2716a41495687917774d39.tar.gz
master-187ad058-a968eee7209287197b2716a41495687917774d39.tar.bz2
master-187ad058-a968eee7209287197b2716a41495687917774d39.zip
ar71xx: add hard_cfg offset detection for rb2011 support - fixes wlan on some newer devices
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36631 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/routerboot.h')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/routerboot.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/routerboot.h b/target/linux/ar71xx/files/arch/mips/ath79/routerboot.h
index 9a4dde59ec..2489e0aee0 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/routerboot.h
+++ b/target/linux/ar71xx/files/arch/mips/ath79/routerboot.h
@@ -14,6 +14,7 @@
#ifdef CONFIG_ATH79_ROUTERBOOT
int routerboot_find_tag(u8 *buf, unsigned int buflen, u16 tag_id,
u8 **tag_data, u16 *tag_len);
+int routerboot_find_magic(u8 *buf, unsigned int buflen, u32 *offset, bool hard);
#else
static inline int
routerboot_find_tag(u8 *buf, unsigned int buflen, u16 tag_id,
@@ -21,6 +22,12 @@ routerboot_find_tag(u8 *buf, unsigned int buflen, u16 tag_id,
{
return -ENOENT;
}
+
+static inline int
+routerboot_find_magic(u8 *buf, unsigned int buflen, u32 *offset, bool hard)
+{
+ return -ENOENT;
+}
#endif
#endif /* _ATH79_ROUTERBOOT_H_ */