[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1412196807-9990-1-git-send-email-paulmcquad@gmail.com>
Date: Wed, 1 Oct 2014 21:53:27 +0100
From: Paul McQuade <paulmcquad@...il.com>
To: paulmcquad@...il.com
Cc: linux-kernel@...r.kernel.org, linux-mm@...ck.org,
sato.vintage@...il.com, daeseok.youn@...il.com,
andriy.shevchenko@...ux.intel.com, jkosina@...e.cz,
khalasa@...p.pl, akpm@...ux-foundation.org
Subject: [PATCH] MM: dmapool: Fixed a brace coding style issue
Removed 3 brace coding style for any arm of this statement
Signed-off-by: Paul McQuade <paulmcquad@...il.com>
---
mm/dmapool.c | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/mm/dmapool.c b/mm/dmapool.c
index ba8019b..8f4a79a 100644
--- a/mm/dmapool.c
+++ b/mm/dmapool.c
@@ -133,28 +133,25 @@ struct dma_pool *dma_pool_create(const char *name, struct device *dev,
struct dma_pool *retval;
size_t allocation;
- if (align == 0) {
+ if (align == 0)
align = 1;
- } else if (align & (align - 1)) {
+ else if (align & (align - 1))
return NULL;
- }
- if (size == 0) {
+ if (size == 0)
return NULL;
- } else if (size < 4) {
+ else if (size < 4)
size = 4;
- }
if ((size % align) != 0)
size = ALIGN(size, align);
allocation = max_t(size_t, size, PAGE_SIZE);
- if (!boundary) {
+ if (!boundary)
boundary = allocation;
- } else if ((boundary < size) || (boundary & (boundary - 1))) {
+ else if ((boundary < size) || (boundary & (boundary - 1)))
return NULL;
- }
retval = kmalloc_node(sizeof(*retval), GFP_KERNEL, dev_to_node(dev));
if (!retval)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists