From: Tony Lindgren Date: Thu, 16 Aug 2007 07:47:10 +0000 (-0700) Subject: musb_hdrc: Search and replace bIntr with int_hsdma X-Git-Tag: v2.6.23-omap1~204 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=9576fe9e0c9a31189ef2802adb6f240e6dfe2426;p=linux-2.6-omap-h63xx.git musb_hdrc: Search and replace bIntr with int_hsdma Search and replace bIntr with int_hsdma Signed-off-by: Tony Lindgren --- diff --git a/drivers/usb/musb/musbhsdma.c b/drivers/usb/musb/musbhsdma.c index 998e1b3c578..4847ae9cb03 100644 --- a/drivers/usb/musb/musbhsdma.c +++ b/drivers/usb/musb/musbhsdma.c @@ -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;