]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
musb_hdrc: Search and replace bBulkCombine with bulk_combine
authorTony Lindgren <tony@atomide.com>
Mon, 13 Aug 2007 11:23:48 +0000 (04:23 -0700)
committerTony Lindgren <tony@atomide.com>
Mon, 13 Aug 2007 11:23:48 +0000 (04:23 -0700)
Search and replace bBulkCombine with bulk_combine

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

index 08c696737d59ce6c09f75a6c18bdbd9cd8e6f9d5..d6304a0e633d9cabd557264d470b45e01880f6d9 100644 (file)
@@ -411,11 +411,11 @@ struct musb {
 #endif
 
 #ifdef C_MP_RX
-       unsigned bBulkCombine:1;
+       unsigned bulk_combine:1;
        /* REVISIT allegedly doesn't work reliably */
 #if 0
 #define        can_bulk_combine(musb,type) \
-               (((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bBulkCombine)
+               (((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_combine)
 #else
 #define        can_bulk_combine(musb,type)     0
 #endif
index 26f5d0f3403e6ac63f2a841738649900f1e4ab3f..f4089f0c11d7b48dbe963211975768cba9f8cdcb 100644 (file)
@@ -1267,7 +1267,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb)
        if (reg & MGC_M_CONFIGDATA_MPRXE) {
                strcat(aInfo, ", bulk combine");
 #ifdef C_MP_RX
-               musb->bBulkCombine = TRUE;
+               musb->bulk_combine = TRUE;
 #else
                strcat(aInfo, " (X)");          /* no driver support */
 #endif