From 9576fe9e0c9a31189ef2802adb6f240e6dfe2426 Mon Sep 17 00:00:00 2001 From: Tony Lindgren Date: Thu, 16 Aug 2007 00:47:10 -0700 Subject: [PATCH] musb_hdrc: Search and replace bIntr with int_hsdma Search and replace bIntr with int_hsdma Signed-off-by: Tony Lindgren --- drivers/usb/musb/musbhsdma.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; -- 2.41.1