diff options
author | Peter Ujfalusi <peter.ujfalusi@nokia.com> | 2009-11-26 13:55:11 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-11-26 15:47:12 +0000 |
commit | 74ea23aa6c9a8bece71b35ddeeb7ad6ae6782cd9 (patch) | |
tree | df188b696e303ad36ba9fdf77dc3235a8406000c /sound/soc | |
parent | c0fa59df7214e546f8a37bc677867ac7b67b5c93 (diff) | |
download | linux-3.10-74ea23aa6c9a8bece71b35ddeeb7ad6ae6782cd9.tar.gz linux-3.10-74ea23aa6c9a8bece71b35ddeeb7ad6ae6782cd9.tar.bz2 linux-3.10-74ea23aa6c9a8bece71b35ddeeb7ad6ae6782cd9.zip |
ASoC: tlv320dac33: Change RT wq to singlethread wq
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>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/tlv320dac33.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/tlv320dac33.c b/sound/soc/codecs/tlv320dac33.c index 2a013e46ae1..9c8903dbe64 100644 --- a/sound/soc/codecs/tlv320dac33.c +++ b/sound/soc/codecs/tlv320dac33.c @@ -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; |