Commit 46a1885e authored by Tony Lindgren's avatar Tony Lindgren

musb_hdrc: Search and replace bBulkSplit with bulk_split

Search and replace bBulkSplit with bulk_split
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 2f632717
...@@ -403,9 +403,9 @@ struct musb { ...@@ -403,9 +403,9 @@ struct musb {
unsigned long idle_timeout; /* Next timeout in jiffies */ unsigned long idle_timeout; /* Next timeout in jiffies */
#ifdef C_MP_TX #ifdef C_MP_TX
unsigned bBulkSplit:1; unsigned bulk_split:1;
#define can_bulk_split(musb,type) \ #define can_bulk_split(musb,type) \
(((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bBulkSplit) (((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_split)
#else #else
#define can_bulk_split(musb,type) 0 #define can_bulk_split(musb,type) 0
#endif #endif
......
...@@ -1275,7 +1275,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb) ...@@ -1275,7 +1275,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb)
if (reg & MGC_M_CONFIGDATA_MPTXE) { if (reg & MGC_M_CONFIGDATA_MPTXE) {
strcat(aInfo, ", bulk split"); strcat(aInfo, ", bulk split");
#ifdef C_MP_TX #ifdef C_MP_TX
musb->bBulkSplit = TRUE; musb->bulk_split = 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