aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/ioremap.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-07-07 02:07:35 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-07 02:07:35 -0400
commitd763d5edf945eec47bd443b699f174976f0afc13 (patch)
tree3e5cd46b9a783999716bf92176854f4f1215d930 /arch/x86/mm/ioremap.c
parent790e2a290b499b0400254e6870ec27969065d122 (diff)
parent1b40a895df6c7d5a80e71f65674060b03d84bbef (diff)
Merge branch 'linus' into tracing/mmiotrace
Diffstat (limited to 'arch/x86/mm/ioremap.c')
-rw-r--r--arch/x86/mm/ioremap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c
index a7c80a6e8622..e92aa461f4d6 100644
--- a/arch/x86/mm/ioremap.c
+++ b/arch/x86/mm/ioremap.c
@@ -602,10 +602,11 @@ void __init early_iounmap(void *addr, unsigned long size)
602 unsigned long offset; 602 unsigned long offset;
603 unsigned int nrpages; 603 unsigned int nrpages;
604 enum fixed_addresses idx; 604 enum fixed_addresses idx;
605 unsigned int nesting; 605 int nesting;
606 606
607 nesting = --early_ioremap_nested; 607 nesting = --early_ioremap_nested;
608 WARN_ON(nesting < 0); 608 if (WARN_ON(nesting < 0))
609 return;
609 610
610 if (early_ioremap_debug) { 611 if (early_ioremap_debug) {
611 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr, 612 printk(KERN_INFO "early_iounmap(%p, %08lx) [%d]\n", addr,