]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
MUSB: misc clean-up.
authorAndrzej Zaborowski <balrogg@gmail.com>
Sat, 3 May 2008 13:19:50 +0000 (15:19 +0200)
committerTony Lindgren <tony@atomide.com>
Tue, 6 May 2008 22:14:34 +0000 (15:14 -0700)
Correct the interrupt mask in TUSB6010 and other nit-picking from my tree.

Signed-off-by: Andrzej Zaborowski <balrog@zabor.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/musb_host.c
drivers/usb/musb/musb_procfs.c
drivers/usb/musb/tusb6010.c
drivers/usb/musb/tusb6010_omap.c

index 64673b7193714654e22bfd89866c8b4c2e0523a6..e9c766f06a2e6c9db70122ddd8bb2e2e5ef84509 100644 (file)
@@ -1203,7 +1203,7 @@ void musb_host_tx(struct musb *musb, u8 epnum)
                 * we have a candidate... NAKing is *NOT* an error
                 */
                musb_ep_select(mbase, epnum);
-               musb_writew(epio, MUSB_CSR0,
+               musb_writew(epio, MUSB_TXCSR,
                                MUSB_TXCSR_H_WZC_BITS
                                | MUSB_TXCSR_TXPKTRDY);
                goto finish;
index e6e050ce61c338113bca225f1de66288edb779ae..da683ebfbd0b98beab61eee6201dd84109952d92 100644 (file)
@@ -453,7 +453,7 @@ dump_end_info(struct musb *musb, u8 epnum, char *aBuffer, unsigned max)
 
 /* Dump the current status and compile options.
  * @param musb the device driver instance
- * @param buffer where to dump the status; it must be big enough hold the
+ * @param buffer where to dump the status; it must be big enough to hold the
  * result otherwise "BAD THINGS HAPPENS(TM)".
  */
 static int dump_header_stats(struct musb *musb, char *buffer)
index bed2e180be0cf2b50030de3a108e2ea9e55b347d..1f3643b2d2b5a8c4030a4f1418c741a247f3e061 100644 (file)
@@ -740,7 +740,7 @@ tusb_otg_ints(struct musb *musb, u32 int_src, void __iomem *tbase)
                                break;
                        case OTG_STATE_A_WAIT_VFALL:
                                /* REVISIT this irq triggers during short
-                                * spikes causet by enumeration ...
+                                * spikes caused by enumeration ...
                                 */
                                if (musb->vbuserr_retry) {
                                        musb->vbuserr_retry--;
@@ -888,7 +888,7 @@ static irqreturn_t tusb_interrupt(int irq, void *__hci)
                musb_writel(tbase, TUSB_DMA_INT_CLEAR, dma_src);
        }
 
-       /* EP interrupts. In OCP mode tusb6010 mirrors the MUSB interrupts */
+       /* EP interrupts. In OCP mode tusb6010 mirrors the MUSB interrupts */
        if (int_src & (TUSB_INT_SRC_USB_IP_TX | TUSB_INT_SRC_USB_IP_RX)) {
                u32     musb_src = musb_readl(tbase, TUSB_USBIP_INT_SRC);
 
@@ -972,7 +972,7 @@ void musb_platform_disable(struct musb *musb)
 
        /* disable all IRQs */
        musb_writel(tbase, TUSB_INT_MASK, ~TUSB_INT_MASK_RESERVED_BITS);
-       musb_writel(tbase, TUSB_USBIP_INT_MASK, 0);
+       musb_writel(tbase, TUSB_USBIP_INT_MASK, 0x7fffffff);
        musb_writel(tbase, TUSB_DMA_INT_MASK, 0x7fffffff);
        musb_writel(tbase, TUSB_GPIO_INT_MASK, 0x1ff);
 
index 66e146eb917d33155bfc142eccaac18988735910..f7a3ffe9befab760c21a1ea9315e2f6755793dd1 100644 (file)
@@ -188,7 +188,7 @@ static void tusb_omap_dma_cb(int lch, u16 ch_status, void *data)
 
        channel->status = MUSB_DMA_STATUS_FREE;
 
-       /* Handle only RX callbacks here. TX callbacks musb be handled based
+       /* Handle only RX callbacks here. TX callbacks must be handled based
         * on the TUSB DMA status interrupt.
         * REVISIT: Use both TUSB DMA status interrupt and OMAP DMA callback
         * interrupt for RX and TX.