Skip to content

Commit

Permalink
resource: Fix broken indentation
Browse files Browse the repository at this point in the history
Fix broken indentation in patch
37b99dd.

Reported-by: Linus Torvalds <[email protected]>
Cc: Wu Fengguang <[email protected]>
LKML-Reference: <20100301135551.GA9998@localhost>
Signed-off-by: H. Peter Anvin <[email protected]>
  • Loading branch information
H. Peter Anvin committed Mar 2, 2010
1 parent 37b99dd commit f414966
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/resource.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f414966

Please sign in to comment.