From: Tony Lindgren Date: Thu, 16 Aug 2007 08:44:54 +0000 (-0700) Subject: musb_hdrc: Search and replace bMore with more X-Git-Tag: v2.6.23-omap1~177 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=1607dee6ab02aead7b5f6d645ef17c5e220f9723;p=linux-2.6-omap-h63xx.git musb_hdrc: Search and replace bMore with more Search and replace bMore with more Signed-off-by: Tony Lindgren --- diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index 0db7b5e607a..5a1dc4efeb5 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c @@ -945,7 +945,7 @@ static void musb_ep_program(struct musb *musb, u8 epnum, static int musb_h_ep0_continue(struct musb *musb, u16 len, struct urb *urb) { - int bMore = FALSE; + int more = FALSE; u8 *fifo_dest = NULL; u16 fifo_count = 0; struct musb_hw_ep *hw_ep = musb->control_ep; @@ -969,7 +969,7 @@ static int musb_h_ep0_continue(struct musb *musb, */ } else if (urb->actual_length < urb->transfer_buffer_length) - bMore = TRUE; + more = TRUE; break; case MGC_END0_START: request = (struct usb_ctrlrequest *) urb->setup_packet; @@ -980,12 +980,12 @@ static int musb_h_ep0_continue(struct musb *musb, } else if (request->bRequestType & USB_DIR_IN) { DBG(4, "start IN-DATA\n"); musb->ep0_stage = MGC_END0_IN; - bMore = TRUE; + more = TRUE; break; } else { DBG(4, "start OUT-DATA\n"); musb->ep0_stage = MGC_END0_OUT; - bMore = TRUE; + more = TRUE; } /* FALLTHROUGH */ case MGC_END0_OUT: @@ -1001,7 +1001,7 @@ static int musb_h_ep0_continue(struct musb *musb, musb_write_fifo(hw_ep, fifo_count, fifo_dest); urb->actual_length += fifo_count; - bMore = TRUE; + more = TRUE; } break; default: @@ -1009,7 +1009,7 @@ static int musb_h_ep0_continue(struct musb *musb, break; } - return bMore; + return more; } /*