]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
resource: Fix broken indentation
authorH. Peter Anvin <hpa@zytor.com>
Tue, 2 Mar 2010 19:21:09 +0000 (11:21 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Tue, 2 Mar 2010 19:21:09 +0000 (11:21 -0800)
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>
kernel/resource.c

index 8f0e3d0f4bff286bd14240ecd708b2d94380c201..91f430fd467ecbf1b5babf52485c357416cbfb72 100644 (file)
@@ -287,7 +287,7 @@ int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
                pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
                end_pfn = (res.end + 1) >> PAGE_SHIFT;
                if (end_pfn > pfn)
-                   ret = (*func)(pfn, end_pfn - pfn, arg);
+                       ret = (*func)(pfn, end_pfn - pfn, arg);
                if (ret)
                        break;
                res.start = res.end + 1;