aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/blackfin.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-11-16 05:49:19 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2009-12-11 14:55:23 -0500
commit04f4086fdc10e60e790d5fc070c33c8905d1d32e (patch)
treec0ddea496538a68d35bfb1e02bd665c7fc9bef64 /drivers/usb/musb/blackfin.c
parentbcef3fd57019e5fc0c8df402b040a52826422a4b (diff)
USB: musb: tweak musb_read_fifo() to avoid unused warnings
Otherwise gcc will whine about epnum/dma_reg being unused when building for BF54x parts. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Bryan Wu <cooloney@kernel.org> Signed-off-by: Cliff Cai <cliff.cai@analog.com> Signed-off-by: Anand Gadiyar <gadiyar@ti.com> Acked-by: Felipe Balbi <felipe.balbi@nokia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb/blackfin.c')
-rw-r--r--drivers/usb/musb/blackfin.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/usb/musb/blackfin.c b/drivers/usb/musb/blackfin.c
index fcec87ea709e..ef51eb4343ab 100644
--- a/drivers/usb/musb/blackfin.c
+++ b/drivers/usb/musb/blackfin.c
@@ -53,13 +53,11 @@ void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
53void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst) 53void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
54{ 54{
55 void __iomem *fifo = hw_ep->fifo; 55 void __iomem *fifo = hw_ep->fifo;
56
57#ifdef CONFIG_BF52x
56 u8 epnum = hw_ep->epnum; 58 u8 epnum = hw_ep->epnum;
57 u16 dma_reg = 0; 59 u16 dma_reg = 0;
58 60
59 DBG(4, "%cX ep%d fifo %p count %d buf %p\n",
60 'R', hw_ep->epnum, fifo, len, dst);
61
62#ifdef CONFIG_BF52x
63 invalidate_dcache_range((unsigned int)dst, 61 invalidate_dcache_range((unsigned int)dst,
64 (unsigned int)(dst + len)); 62 (unsigned int)(dst + len));
65 63
@@ -102,6 +100,9 @@ void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
102 len & 0x01 ? (len >> 1) + 1 : len >> 1); 100 len & 0x01 ? (len >> 1) + 1 : len >> 1);
103#endif 101#endif
104 102
103 DBG(4, "%cX ep%d fifo %p count %d buf %p\n",
104 'R', hw_ep->epnum, fifo, len, dst);
105
105 dump_fifo_data(dst, len); 106 dump_fifo_data(dst, len);
106} 107}
107 108