ralink: drop 3.14 support
[openwrt/openwrt.git] / target / linux / lantiq / patches-3.14 / 0010-MIPS-lantiq-export-soc-type.patch
1 From 6804142b47f2634b0657e4dfcec7a34e982b6ddb Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Wed, 10 Sep 2014 22:29:21 +0200
4 Subject: [PATCH 10/36] MIPS: lantiq: export soc type
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
10 ---
11 arch/mips/include/asm/mach-lantiq/lantiq.h | 2 ++
12 arch/mips/lantiq/prom.c | 5 +++++
13 2 files changed, 7 insertions(+)
14
15 --- a/arch/mips/include/asm/mach-lantiq/lantiq.h
16 +++ b/arch/mips/include/asm/mach-lantiq/lantiq.h
17 @@ -48,6 +48,8 @@ extern struct clk *clk_get_ppe(void);
18 extern unsigned char ltq_boot_select(void);
19 /* find out what caused the last cpu reset */
20 extern int ltq_reset_cause(void);
21 +/* find out the soc type */
22 +extern int ltq_soc_type(void);
23
24 #define IOPORT_RESOURCE_START 0x10000000
25 #define IOPORT_RESOURCE_END 0xffffffff
26 --- a/arch/mips/lantiq/prom.c
27 +++ b/arch/mips/lantiq/prom.c
28 @@ -36,6 +36,11 @@ const char *get_system_type(void)
29 return soc_info.sys_type;
30 }
31
32 +int ltq_soc_type(void)
33 +{
34 + return soc_info.type;
35 +}
36 +
37 void prom_free_prom_memory(void)
38 {
39 }