]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: android: ion: Align with parenthesis
authorJohn B. Wyatt IV <jbwyatt4@gmail.com>
Fri, 3 Apr 2020 04:24:48 +0000 (21:24 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Apr 2020 06:55:28 +0000 (08:55 +0200)
Align two different lines of arguments with the parenthesis
of their respected function definitions. Fix style warnings
of matching alignment.

Reported by checkpatch.

Signed-off-by: John B. Wyatt IV <jbwyatt4@gmail.com>
Link: https://lore.kernel.org/r/20200403042448.863689-1-jbwyatt4@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ion/ion_page_pool.c

index f85ec5b16b65e3ed59880b029c33c930f036c781..0198b886d906aa81cefa51d9f59bbd08333bdfc6 100644 (file)
@@ -37,7 +37,7 @@ static void ion_page_pool_add(struct ion_page_pool *pool, struct page *page)
        }
 
        mod_node_page_state(page_pgdat(page), NR_KERNEL_MISC_RECLAIMABLE,
-                                                       1 << pool->order);
+                           1 << pool->order);
        mutex_unlock(&pool->mutex);
 }
 
@@ -57,7 +57,7 @@ static struct page *ion_page_pool_remove(struct ion_page_pool *pool, bool high)
 
        list_del(&page->lru);
        mod_node_page_state(page_pgdat(page), NR_KERNEL_MISC_RECLAIMABLE,
-                                                       -(1 << pool->order));
+                           -(1 << pool->order));
        return page;
 }