aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/resource.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2010-03-02 14:21:09 -0500
committerH. Peter Anvin <hpa@zytor.com>2010-03-02 14:21:09 -0500
commitf41496607e03ab99f263b8e26689ad0fc853007f (patch)
treef210a519325ffbc388804d95eb68a6bb89c493ca /kernel/resource.c
parent37b99dd5372cff42f83210c280f314f10f99138e (diff)
resource: Fix broken indentation
Fix broken indentation in patch 37b99dd5372cff42f83210c280f314f10f99138e. Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Cc: Wu Fengguang <fengguang.wu@intel.com> LKML-Reference: <20100301135551.GA9998@localhost> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'kernel/resource.c')
-rw-r--r--kernel/resource.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/resource.c b/kernel/resource.c
index 8f0e3d0f4bff..91f430fd467e 100644
--- a/kernel/resource.c
+++ b/kernel/resource.c
@@ -287,7 +287,7 @@ int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
287 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT; 287 pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
288 end_pfn = (res.end + 1) >> PAGE_SHIFT; 288 end_pfn = (res.end + 1) >> PAGE_SHIFT;
289 if (end_pfn > pfn) 289 if (end_pfn > pfn)
290 ret = (*func)(pfn, end_pfn - pfn, arg); 290 ret = (*func)(pfn, end_pfn - pfn, arg);
291 if (ret) 291 if (ret)
292 break; 292 break;
293 res.start = res.end + 1; 293 res.start = res.end + 1;