Commit 0828376d authored by Tobias Ollmann's avatar Tobias Ollmann Committed by Greg Kroah-Hartman

USB: Core: Fix minor coding style issues

Fixing all coding style issues in buffer.c
Signed-off-by: default avatarTobias Ollmann <tobias.ollmann@gmx.at>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 60678b60
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/device.h> #include <linux/device.h>
#include <linux/mm.h> #include <linux/mm.h>
#include <asm/io.h> #include <linux/io.h>
#include <linux/dma-mapping.h> #include <linux/dma-mapping.h>
#include <linux/dmapool.h> #include <linux/dmapool.h>
#include <linux/usb.h> #include <linux/usb.h>
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
*/ */
/* FIXME tune these based on pool statistics ... */ /* FIXME tune these based on pool statistics ... */
static const size_t pool_max [HCD_BUFFER_POOLS] = { static const size_t pool_max[HCD_BUFFER_POOLS] = {
/* platforms without dma-friendly caches might need to /* platforms without dma-friendly caches might need to
* prevent cacheline sharing... * prevent cacheline sharing...
*/ */
...@@ -64,7 +64,7 @@ int hcd_buffer_create(struct usb_hcd *hcd) ...@@ -64,7 +64,7 @@ int hcd_buffer_create(struct usb_hcd *hcd)
snprintf(name, sizeof name, "buffer-%d", size); snprintf(name, sizeof name, "buffer-%d", size);
hcd->pool[i] = dma_pool_create(name, hcd->self.controller, hcd->pool[i] = dma_pool_create(name, hcd->self.controller,
size, size, 0); size, size, 0);
if (!hcd->pool [i]) { if (!hcd->pool[i]) {
hcd_buffer_destroy(hcd); hcd_buffer_destroy(hcd);
return -ENOMEM; return -ENOMEM;
} }
...@@ -116,8 +116,8 @@ void *hcd_buffer_alloc( ...@@ -116,8 +116,8 @@ void *hcd_buffer_alloc(
} }
for (i = 0; i < HCD_BUFFER_POOLS; i++) { for (i = 0; i < HCD_BUFFER_POOLS; i++) {
if (size <= pool_max [i]) if (size <= pool_max[i])
return dma_pool_alloc(hcd->pool [i], mem_flags, dma); return dma_pool_alloc(hcd->pool[i], mem_flags, dma);
} }
return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags); return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags);
} }
...@@ -142,8 +142,8 @@ void hcd_buffer_free( ...@@ -142,8 +142,8 @@ void hcd_buffer_free(
} }
for (i = 0; i < HCD_BUFFER_POOLS; i++) { for (i = 0; i < HCD_BUFFER_POOLS; i++) {
if (size <= pool_max [i]) { if (size <= pool_max[i]) {
dma_pool_free(hcd->pool [i], addr, dma); dma_pool_free(hcd->pool[i], addr, dma);
return; return;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment