Skip to content

Commit f414966

Browse files
author
H. Peter Anvin
committed
resource: Fix broken indentation
Fix broken indentation in patch 37b99dd. 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>
1 parent 37b99dd commit f414966

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/resource.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages,
287287
pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT;
288288
end_pfn = (res.end + 1) >> PAGE_SHIFT;
289289
if (end_pfn > pfn)
290-
ret = (*func)(pfn, end_pfn - pfn, arg);
290+
ret = (*func)(pfn, end_pfn - pfn, arg);
291291
if (ret)
292292
break;
293293
res.start = res.end + 1;

0 commit comments

Comments
 (0)