From: Joe Perches Date: Wed, 30 May 2012 20:25:57 +0000 (-0700) Subject: usb: gadget: pch_udc: Fix likely misuse of | for & X-Git-Tag: v3.12-rc1~2683^2~24^2~35^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0a00790ff4755f2e3eab907a43725cff59fc074b;p=kernel%2Fkernel-generic.git usb: gadget: pch_udc: Fix likely misuse of | for & Using | with a constant is always true. Likely this should have be &. Signed-off-by: Joe Perches Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/gadget/pch_udc.c b/drivers/usb/gadget/pch_udc.c index 1cfcc9e..f4fb71c 100644 --- a/drivers/usb/gadget/pch_udc.c +++ b/drivers/usb/gadget/pch_udc.c @@ -2208,7 +2208,7 @@ static void pch_udc_complete_receiver(struct pch_udc_ep *ep) return; } if ((td->status & PCH_UDC_BUFF_STS) == PCH_UDC_BS_DMA_DONE) - if (td->status | PCH_UDC_DMA_LAST) { + if (td->status & PCH_UDC_DMA_LAST) { count = td->status & PCH_UDC_RXTX_BYTES; break; }