ralink: update patches
[openwrt.git] / target / linux / ramips / patches-3.9 / 0122-MIPS-ralink-add-memory-definition-to-struct-ralink_s.patch
1 From 438579e0fd477cec8584bdf012ea51cf4ad8e05c Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Sat, 13 Apr 2013 15:10:14 +0200
4 Subject: [PATCH 122/164] MIPS: ralink: add memory definition to struct
5  ralink_soc_info
6
7 Depending on the actual SoC we have a different base address as well as minimum
8 and maximum size for RAM. Add these fields to the per SoC structure.
9
10 Signed-off-by: John Crispin <blogic@openwrt.org>
11 Patchwork: http://patchwork.linux-mips.org/patch/5179/
12 ---
13  arch/mips/ralink/common.h |    5 +++++
14  1 file changed, 5 insertions(+)
15
16 diff --git a/arch/mips/ralink/common.h b/arch/mips/ralink/common.h
17 index 299119b..83144c3 100644
18 --- a/arch/mips/ralink/common.h
19 +++ b/arch/mips/ralink/common.h
20 @@ -33,6 +33,11 @@ extern struct ralink_pinmux rt_gpio_pinmux;
21  struct ralink_soc_info {
22         unsigned char sys_type[RAMIPS_SYS_TYPE_LEN];
23         unsigned char *compatible;
24 +
25 +       unsigned long mem_base;
26 +       unsigned long mem_size;
27 +       unsigned long mem_size_min;
28 +       unsigned long mem_size_max;
29  };
30  extern struct ralink_soc_info soc_info;
31  
32 -- 
33 1.7.10.4
34