Commit 35289e80 authored by Tony Lindgren's avatar Tony Lindgren

musb_hdrc: Search and replace bBulkCombine with bulk_combine

Search and replace bBulkCombine with bulk_combine
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 46a1885e
...@@ -411,11 +411,11 @@ struct musb { ...@@ -411,11 +411,11 @@ struct musb {
#endif #endif
#ifdef C_MP_RX #ifdef C_MP_RX
unsigned bBulkCombine:1; unsigned bulk_combine:1;
/* REVISIT allegedly doesn't work reliably */ /* REVISIT allegedly doesn't work reliably */
#if 0 #if 0
#define can_bulk_combine(musb,type) \ #define can_bulk_combine(musb,type) \
(((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bBulkCombine) (((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_combine)
#else #else
#define can_bulk_combine(musb,type) 0 #define can_bulk_combine(musb,type) 0
#endif #endif
......
...@@ -1267,7 +1267,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb) ...@@ -1267,7 +1267,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb)
if (reg & MGC_M_CONFIGDATA_MPRXE) { if (reg & MGC_M_CONFIGDATA_MPRXE) {
strcat(aInfo, ", bulk combine"); strcat(aInfo, ", bulk combine");
#ifdef C_MP_RX #ifdef C_MP_RX
musb->bBulkCombine = TRUE; musb->bulk_combine = TRUE;
#else #else
strcat(aInfo, " (X)"); /* no driver support */ strcat(aInfo, " (X)"); /* no driver support */
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment