linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm: Space required for open parenthesis
@ 2014-10-01 17:25 Paul McQuade
  0 siblings, 0 replies; only message in thread
From: Paul McQuade @ 2014-10-01 17:25 UTC (permalink / raw)
  To: paulmcquad; +Cc: linux-kernel, linux-mm, penberg, vegardno

ERROR: space required before the open parenthesis '('

Signed-off-by: Paul McQuade <paulmcquad@gmail.com>
---
 mm/kmemcheck.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/kmemcheck.c b/mm/kmemcheck.c
index fd814fd..89a7440 100644
--- a/mm/kmemcheck.c
+++ b/mm/kmemcheck.c
@@ -24,7 +24,7 @@ void kmemcheck_alloc_shadow(struct page *page, int order, gfp_t flags, int node)
 		return;
 	}
 
-	for(i = 0; i < pages; ++i)
+	for (i = 0; i < pages; ++i)
 		page[i].shadow = page_address(&shadow[i]);
 
 	/*
@@ -50,7 +50,7 @@ void kmemcheck_free_shadow(struct page *page, int order)
 
 	shadow = virt_to_page(page[0].shadow);
 
-	for(i = 0; i < pages; ++i)
+	for (i = 0; i < pages; ++i)
 		page[i].shadow = NULL;
 
 	__free_pages(shadow, order);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-10-01 17:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-01 17:25 [PATCH] mm: Space required for open parenthesis Paul McQuade

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).