2015-08-23 17:16:44

by Muhammad Falak R Wani

[permalink] [raw]
Subject: [PATCH] usb: core: buffer: Added parenthesis to sizeof

This patch fixes a coding style issue by adding parenthesis
to the sizeof operator, which is the preferred way of using it.

Signed-off-by: Muhammad Falak R Wani <[email protected]>
---
drivers/usb/core/buffer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c
index 506b969..58004eb 100644
--- a/drivers/usb/core/buffer.c
+++ b/drivers/usb/core/buffer.c
@@ -70,7 +70,7 @@ int hcd_buffer_create(struct usb_hcd *hcd)
size = pool_max[i];
if (!size)
continue;
- snprintf(name, sizeof name, "buffer-%d", size);
+ snprintf(name, sizeof(name), "buffer-%d", size);
hcd->pool[i] = dma_pool_create(name, hcd->self.controller,
size, size, 0);
if (!hcd->pool[i]) {
--
1.9.1