Commit fceaff4d authored by Vikram Pandita's avatar Vikram Pandita Committed by Tony Lindgren

musb_hdrc: Fix host side remote wakeup

An incorrect bit was being set in the hub status mask during
host side remote wakeup scenarios.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
parent 7a40be62
...@@ -330,8 +330,8 @@ static irqreturn_t musb_stage0_irq(struct musb * pThis, u8 bIntrUSB, ...@@ -330,8 +330,8 @@ static irqreturn_t musb_stage0_irq(struct musb * pThis, u8 bIntrUSB,
power | MGC_M_POWER_RESUME); power | MGC_M_POWER_RESUME);
pThis->port1_status |= pThis->port1_status |=
MUSB_PORT_STAT_RESUME (USB_PORT_STAT_C_SUSPEND << 16)
| USB_PORT_STAT_C_SUSPEND; | MUSB_PORT_STAT_RESUME;
pThis->rh_timer = jiffies pThis->rh_timer = jiffies
+ msecs_to_jiffies(20); + msecs_to_jiffies(20);
......
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