ERROR: space required before the open parenthesis '('

Signed-off-by: Paul McQuade <paulmcq...@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

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to