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 {
unsigned long idle_timeout; /* Next timeout in jiffies */
#ifdef C_MP_TX
unsigned bBulkSplit:1;
unsigned bulk_split:1;
#define can_bulk_split(musb,type) \
(((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bBulkSplit)
(((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_split)
#else
#define can_bulk_split(musb,type) 0
#endif
......
......@@ -1275,7 +1275,7 @@ static int __init musb_core_init(u16 wType, struct musb *musb)
if (reg & MGC_M_CONFIGDATA_MPTXE) {
strcat(aInfo, ", bulk split");
#ifdef C_MP_TX
musb->bBulkSplit = TRUE;
musb->bulk_split = TRUE;
#else
strcat(aInfo, " (X)"); /* no driver support */
#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