[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20160601134006.GA3382@sandhya>
Date: Wed, 1 Jun 2016 09:40:06 -0400
From: Sandhya Bankar <bankarsandhya512@...il.com>
To: b-liu@...com, gregkh@...uxfoundation.org,
linux-usb@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] usb: musb_host: Use sizeof(*qh)instead of sizeof *qh.
Use sizeof(*qh)instead of sizeof *qh.
Signed-off-by: Sandhya Bankar <bankarsandhya512@...il.com>
---
drivers/usb/musb/musb_host.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c
index 2f8ad7f..72121fe 100644
--- a/drivers/usb/musb/musb_host.c
+++ b/drivers/usb/musb/musb_host.c
@@ -2228,7 +2228,7 @@ static int musb_urb_enqueue(
* REVISIT consider a dedicated qh kmem_cache, so it's harder
* for bugs in other kernel code to break this driver...
*/
- qh = kzalloc(sizeof *qh, mem_flags);
+ qh = kzalloc(sizeof(*qh), mem_flags);
if (!qh) {
spin_lock_irqsave(&musb->lock, flags);
usb_hcd_unlink_urb_from_ep(hcd, urb);
--
1.8.3.4
Powered by blists - more mailing lists