Skip to content

Commit

Permalink
ASoC: tlv320dac33: Change RT wq to singlethread wq
Browse files Browse the repository at this point in the history
RT workqueue is going away in the near future, replace it with
singlethread wq for now, which is still supported.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Peter Ujfalusi authored and Mark Brown committed Nov 26, 2009
1 parent c0fa59d commit 74ea23a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sound/soc/codecs/tlv320dac33.c
Original file line number Diff line number Diff line change
Expand Up @@ -1118,7 +1118,8 @@ static int dac33_i2c_probe(struct i2c_client *client,
}
if (dac33->irq != -1) {
/* Setup work queue */
dac33->dac33_wq = create_rt_workqueue("tlv320dac33");
dac33->dac33_wq =
create_singlethread_workqueue("tlv320dac33");
if (dac33->dac33_wq == NULL) {
free_irq(dac33->irq, &dac33->codec);
ret = -ENOMEM;
Expand Down

0 comments on commit 74ea23a

Please sign in to comment.