[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-d4f5228c01c130ff2c1f9240f1de22a5dfc61554@git.kernel.org>
Date: Tue, 13 Aug 2013 08:01:36 -0700
From: tip-bot for Jianguo Wu <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...nel.org,
wangchen@...fujitsu.com, wujianguo@...wei.com, tglx@...utronix.de,
iamjoonsoo.kim@....com, guohanjun@...wei.com, linux-mm@...ck.org
Subject: [tip:x86/mm] mm: Remove unused variable idx0 in __early_ioremap()
Commit-ID: d4f5228c01c130ff2c1f9240f1de22a5dfc61554
Gitweb: http://git.kernel.org/tip/d4f5228c01c130ff2c1f9240f1de22a5dfc61554
Author: Jianguo Wu <wujianguo@...wei.com>
AuthorDate: Tue, 13 Aug 2013 11:01:07 +0800
Committer: Ingo Molnar <mingo@...nel.org>
CommitDate: Tue, 13 Aug 2013 11:46:36 +0200
mm: Remove unused variable idx0 in __early_ioremap()
After commit:
8827247ffcc ("x86: don't define __this_fixmap_does_not_exist()")
variable idx0 is no longer needed, so just remove it.
Signed-off-by: Jianguo Wu <wujianguo@...wei.com>
Cc: Joonsoo Kim <iamjoonsoo.kim@....com>
Cc: <linux-mm@...ck.org>
Cc: <wangchen@...fujitsu.com>
Cc: Hanjun Guo <guohanjun@...wei.com>
Link: http://lkml.kernel.org/r/5209A173.3090600@huawei.com
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
arch/x86/mm/ioremap.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c
index 0215e2c..799580c 100644
--- a/arch/x86/mm/ioremap.c
+++ b/arch/x86/mm/ioremap.c
@@ -487,7 +487,7 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot)
unsigned long offset;
resource_size_t last_addr;
unsigned int nrpages;
- enum fixed_addresses idx0, idx;
+ enum fixed_addresses idx;
int i, slot;
WARN_ON(system_state != SYSTEM_BOOTING);
@@ -540,8 +540,7 @@ __early_ioremap(resource_size_t phys_addr, unsigned long size, pgprot_t prot)
/*
* Ok, go for it..
*/
- idx0 = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*slot;
- idx = idx0;
+ idx = FIX_BTMAP_BEGIN - NR_FIX_BTMAPS*slot;
while (nrpages > 0) {
early_set_fixmap(idx, phys_addr, prot);
phys_addr += PAGE_SIZE;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists