diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2015-02-10 20:46:13 +0800 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2015-02-11 17:11:44 -0600 |
commit | fe781d9317e2592c08850b971f453ce4d4734279 (patch) | |
tree | fb942030e6588937a3418c12ee37c9d954b884ef /kexec | |
parent | c2ec15074a5d368b97af2793926055c63c889815 (diff) |
mips: remove unused variable.
Fixes the following compilation warning.
kexec/arch/mips/crashdump-mips.c:151:6: warning: unused variable 'i' [-Wunused-variable]
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'kexec')
-rw-r--r-- | kexec/arch/mips/crashdump-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kexec/arch/mips/crashdump-mips.c b/kexec/arch/mips/crashdump-mips.c index 98c9f7c..dc68cb4 100644 --- a/kexec/arch/mips/crashdump-mips.c +++ b/kexec/arch/mips/crashdump-mips.c @@ -148,7 +148,7 @@ static int exclude_crash_reserve_region(int *nr_ranges) static int get_crash_memory_ranges(struct memory_range **range, int *ranges) { const char iomem[] = "/proc/iomem"; - int i, memory_ranges = 0; + int memory_ranges = 0; char line[MAX_LINE]; FILE *fp; unsigned long long start, end; |