[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1298010728-7036-1-git-send-email-dustan.bower@gmail.com>
Date: Fri, 18 Feb 2011 01:32:08 -0500
From: Dustan Bower <dustan.bower@...il.com>
To: gregkh@...e.de
Cc: abbotti@....co.uk, fmhess@...rs.sourceforge.net,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
Dustan Bower <dustan.bower@...il.com>
Subject: [PATCH] Staging: comedi: drivers.c: fixed braces coding style issue.
Fixed coding style issue.
Signed-off-by: Dustan Bower <dustan.bower@...il.com>
---
drivers/staging/comedi/drivers.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/comedi/drivers.c b/drivers/staging/comedi/drivers.c
index dca861e..f8b91b7 100644
--- a/drivers/staging/comedi/drivers.c
+++ b/drivers/staging/comedi/drivers.c
@@ -471,9 +471,8 @@ int comedi_buf_alloc(struct comedi_device *dev, struct comedi_subdevice *s,
async->buf_page_list =
vzalloc(sizeof(struct comedi_buf_page) * n_pages);
- if (async->buf_page_list) {
+ if (async->buf_page_list)
pages = vmalloc(sizeof(struct page *) * n_pages);
- }
if (pages) {
for (i = 0; i < n_pages; i++) {
if (s->async_dma_dir != DMA_NONE) {
--
1.7.4.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