usb: renesas_usbhs: fix the BCLR setting condition for non-DCP pipe
[linux-2.6-block.git] / drivers / usb / renesas_usbhs / fifo.c
index d1af831f43ebad07e86e1d62b0730eb0579ebb4c..03cac07f57b509a7c67089e5348e20d2251dbf92 100644 (file)
@@ -282,11 +282,17 @@ static void usbhsf_fifo_clear(struct usbhs_pipe *pipe,
                              struct usbhs_fifo *fifo)
 {
        struct usbhs_priv *priv = usbhs_pipe_to_priv(pipe);
+       int ret = 0;
 
        if (!usbhs_pipe_is_dcp(pipe))
-               usbhsf_fifo_barrier(priv, fifo);
+               ret = usbhsf_fifo_barrier(priv, fifo);
 
-       usbhs_write(priv, fifo->ctr, BCLR);
+       /*
+        * if non-DCP pipe, this driver should set BCLR when
+        * usbhsf_fifo_barrier() returns 0.
+        */
+       if (!ret)
+               usbhs_write(priv, fifo->ctr, BCLR);
 }
 
 static int usbhsf_fifo_rcv_len(struct usbhs_priv *priv,