Skip to content

Commit

Permalink
usb: musb: gadget: fix compile warning
Browse files Browse the repository at this point in the history
Fix the following compile warning:

drivers/usb/musb/musb_gadget.c: In function ‘rxstate’:
drivers/usb/musb/musb_gadget.c:714:22: warning: comparison of distinct pointer types lacks a cast [enabled by default]

Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Felipe Balbi committed Mar 18, 2013
1 parent cc50603 commit 37730ec
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions drivers/usb/musb/musb_gadget.c
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ static void rxstate(struct musb *musb, struct musb_request *req)
struct dma_controller *c;
struct dma_channel *channel;
int use_dma = 0;
int transfer_size;
unsigned int transfer_size;

c = musb->dma_controller;
channel = musb_ep->dma;
Expand Down Expand Up @@ -669,10 +669,11 @@ static void rxstate(struct musb *musb, struct musb_request *req)
csr | MUSB_RXCSR_DMAMODE);
musb_writew(epio, MUSB_RXCSR, csr);

transfer_size = min(request->length - request->actual,
transfer_size = min_t(unsigned int,
request->length -
request->actual,
channel->max_len);
musb_ep->dma->desired_mode = 1;

} else {
if (!musb_ep->hb_mult &&
musb_ep->hw_ep->rx_double_buffered)
Expand Down Expand Up @@ -702,7 +703,7 @@ static void rxstate(struct musb *musb, struct musb_request *req)

struct dma_controller *c;
struct dma_channel *channel;
int transfer_size = 0;
unsigned int transfer_size = 0;

c = musb->dma_controller;
channel = musb_ep->dma;
Expand All @@ -711,11 +712,13 @@ static void rxstate(struct musb *musb, struct musb_request *req)
if (fifo_count < musb_ep->packet_sz)
transfer_size = fifo_count;
else if (request->short_not_ok)
transfer_size = min(request->length -
transfer_size = min_t(unsigned int,
request->length -
request->actual,
channel->max_len);
else
transfer_size = min(request->length -
transfer_size = min_t(unsigned int,
request->length -
request->actual,
(unsigned)fifo_count);

Expand Down

0 comments on commit 37730ec

Please sign in to comment.