diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-07-07 02:07:35 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-07 02:07:35 -0400 |
commit | d763d5edf945eec47bd443b699f174976f0afc13 (patch) | |
tree | 3e5cd46b9a783999716bf92176854f4f1215d930 /arch/x86/mm/ioremap.c | |
parent | 790e2a290b499b0400254e6870ec27969065d122 (diff) | |
parent | 1b40a895df6c7d5a80e71f65674060b03d84bbef (diff) |
Merge branch 'linus' into tracing/mmiotrace
Diffstat (limited to 'arch/x86/mm/ioremap.c')
-rw-r--r-- | arch/x86/mm/ioremap.c | 5 |
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, |