Commit 2bd27b93 authored by Christopher Diaz Riveros's avatar Christopher Diaz Riveros Committed by Greg Kroah-Hartman

staging: emxx_udc: Remove unneeded cast

Fix Coccinelle alert:

drivers/staging//emxx_udc/emxx_udc.c:2689:19-21: WARNING: casting value returned by memory allocation function to (u8 *) is useless.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarChristopher Diaz Riveros <chrisadr@gentoo.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8b6c7a34
......@@ -2686,7 +2686,7 @@ static int nbu2ss_ep_queue(
if (req->unaligned) {
if (!ep->virt_buf)
ep->virt_buf = (u8 *)dma_alloc_coherent(
ep->virt_buf = dma_alloc_coherent(
NULL, PAGE_SIZE,
&ep->phys_buf, GFP_ATOMIC | GFP_DMA);
if (ep->epnum > 0) {
......
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