|
@@ -1505,7 +1505,7 @@ static int waipio_ssr_enable(struct device *dev, void *data)
|
|
|
dev_dbg(dev, "%s: TODO \n", __func__);
|
|
|
}
|
|
|
|
|
|
- snd_card_notify_user(1);
|
|
|
+ snd_card_notify_user(SND_CARD_STATUS_ONLINE);
|
|
|
dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
|
|
|
|
|
|
err:
|
|
@@ -1523,7 +1523,7 @@ static void waipio_ssr_disable(struct device *dev, void *data)
|
|
|
}
|
|
|
|
|
|
dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
|
|
|
- snd_card_notify_user(0);
|
|
|
+ snd_card_notify_user(SND_CARD_STATUS_OFFLINE);
|
|
|
|
|
|
if (!strcmp(card->name, "waipio-stub-snd-card")) {
|
|
|
/* TODO */
|
|
@@ -1713,6 +1713,10 @@ static int msm_asoc_machine_probe(struct platform_device *pdev)
|
|
|
/* Add QoS request for audio tasks */
|
|
|
msm_audio_add_qos_request();
|
|
|
|
|
|
+ /* change card status to ONLINE */
|
|
|
+ dev_dbg(&pdev->dev, "%s: setting snd_card to ONLINE\n", __func__);
|
|
|
+ snd_card_set_card_status(SND_CARD_STATUS_ONLINE);
|
|
|
+
|
|
|
return 0;
|
|
|
err:
|
|
|
devm_kfree(&pdev->dev, pdata);
|