Skip to content

Commit

Permalink
Merge remote-tracking branch 'asoc/fix/wm8350' into tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
broonie committed Mar 7, 2013
2 parents 25e5a74 + 51cd02d commit de83fb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/codecs/wm8350.c
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,7 @@ static irqreturn_t wm8350_hpl_jack_handler(int irq, void *data)
if (device_may_wakeup(wm8350->dev))
pm_wakeup_event(wm8350->dev, 250);

schedule_delayed_work(&priv->hpl.work, 200);
schedule_delayed_work(&priv->hpl.work, msecs_to_jiffies(200));

return IRQ_HANDLED;
}
Expand All @@ -1318,7 +1318,7 @@ static irqreturn_t wm8350_hpr_jack_handler(int irq, void *data)
if (device_may_wakeup(wm8350->dev))
pm_wakeup_event(wm8350->dev, 250);

schedule_delayed_work(&priv->hpr.work, 200);
schedule_delayed_work(&priv->hpr.work, msecs_to_jiffies(200));

return IRQ_HANDLED;
}
Expand Down

0 comments on commit de83fb3

Please sign in to comment.