add chaos_calmer branch
[15.05/openwrt.git] / package / boot / kexec-tools / patches / 0004-mips-remove-unused-variable.patch
1 From 904e9ae892b0592c916a013869e3be3d830e0155 Mon Sep 17 00:00:00 2001
2 From: Yousong Zhou <yszhou4tech@gmail.com>
3 Date: Mon, 9 Feb 2015 20:11:04 +0800
4 Subject: [PATCH 4/5] mips: remove unused variable.
5
6 Fixes the following compilation warning.
7
8         kexec/arch/mips/crashdump-mips.c:151:6: warning: unused variable 'i' [-Wunused-variable]
9
10 Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
11 ---
12  kexec/arch/mips/crashdump-mips.c |    2 +-
13  1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/kexec/arch/mips/crashdump-mips.c b/kexec/arch/mips/crashdump-mips.c
16 index 98c9f7c..dc68cb4 100644
17 --- a/kexec/arch/mips/crashdump-mips.c
18 +++ b/kexec/arch/mips/crashdump-mips.c
19 @@ -148,7 +148,7 @@ static int exclude_crash_reserve_region(int *nr_ranges)
20  static int get_crash_memory_ranges(struct memory_range **range, int *ranges)
21  {
22         const char iomem[] = "/proc/iomem";
23 -       int i, memory_ranges = 0;
24 +       int memory_ranges = 0;
25         char line[MAX_LINE];
26         FILE *fp;
27         unsigned long long start, end;
28 -- 
29 1.7.10.4
30