]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
musb_hdrc: Search and replace bIntr with int_hsdma
authorTony Lindgren <tony@atomide.com>
Thu, 16 Aug 2007 07:47:10 +0000 (00:47 -0700)
committerTony Lindgren <tony@atomide.com>
Thu, 16 Aug 2007 10:35:03 +0000 (03:35 -0700)
Search and replace bIntr with int_hsdma

Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/usb/musb/musbhsdma.c

index 998e1b3c578d8332653d219be22174d56154a66d..4847ae9cb03e382ac66934fc48bf273fc02376ee 100644 (file)
@@ -304,15 +304,15 @@ static irqreturn_t dma_controller_irq(int irq, void *private_data)
        u8 bChannel;
        u16 csr;
        u32 dwAddress;
-       u8 bIntr;
+       u8 int_hsdma;
        irqreturn_t retval = IRQ_NONE;
 
-       bIntr = musb_readb(mbase, MGC_O_HSDMA_INTR);
-       if (!bIntr)
+       int_hsdma = musb_readb(mbase, MGC_O_HSDMA_INTR);
+       if (!int_hsdma)
                goto done;
 
        for (bChannel = 0; bChannel < MGC_HSDMA_CHANNELS; bChannel++) {
-               if (bIntr & (1 << bChannel)) {
+               if (int_hsdma & (1 << bChannel)) {
                        pImplChannel = (struct musb_dma_channel *)
                                        &(pController->aChannel[bChannel]);
                        pChannel = &pImplChannel->Channel;