diff options
-rw-r--r-- | sound/soc/codecs/wm_adsp.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index 67124783558a..cce9020933c6 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c | |||
@@ -1595,13 +1595,6 @@ static void wm_adsp2_boot_work(struct work_struct *work) | |||
1595 | if (ret != 0) | 1595 | if (ret != 0) |
1596 | goto err; | 1596 | goto err; |
1597 | 1597 | ||
1598 | ret = regmap_update_bits_async(dsp->regmap, | ||
1599 | dsp->base + ADSP2_CONTROL, | ||
1600 | ADSP2_CORE_ENA, | ||
1601 | ADSP2_CORE_ENA); | ||
1602 | if (ret != 0) | ||
1603 | goto err; | ||
1604 | |||
1605 | dsp->running = true; | 1598 | dsp->running = true; |
1606 | 1599 | ||
1607 | return; | 1600 | return; |
@@ -1651,8 +1644,8 @@ int wm_adsp2_event(struct snd_soc_dapm_widget *w, | |||
1651 | 1644 | ||
1652 | ret = regmap_update_bits(dsp->regmap, | 1645 | ret = regmap_update_bits(dsp->regmap, |
1653 | dsp->base + ADSP2_CONTROL, | 1646 | dsp->base + ADSP2_CONTROL, |
1654 | ADSP2_START, | 1647 | ADSP2_CORE_ENA | ADSP2_START, |
1655 | ADSP2_START); | 1648 | ADSP2_CORE_ENA | ADSP2_START); |
1656 | if (ret != 0) | 1649 | if (ret != 0) |
1657 | goto err; | 1650 | goto err; |
1658 | break; | 1651 | break; |