asoc: codecs: Add NULL check before calling bcs_enable callback function
Add NULL check before calling bcs_enable callback function. Change-Id: Ic2d65534710d71c074c55d67da3e8a9793bab637 Signed-off-by: Faiz Nabi Kuchay <fkuchay@codeaurora.org>
Cette révision appartient à :
@@ -694,7 +694,8 @@ correct_plug_type:
|
||||
*/
|
||||
if (plug_type == MBHC_PLUG_TYPE_HEADSET ||
|
||||
plug_type == MBHC_PLUG_TYPE_HEADPHONE)
|
||||
mbhc->mbhc_cb->bcs_enable(mbhc, false);
|
||||
if (mbhc->mbhc_cb->bcs_enable)
|
||||
mbhc->mbhc_cb->bcs_enable(mbhc, false);
|
||||
|
||||
timeout = jiffies + msecs_to_jiffies(HS_DETECT_PLUG_TIME_MS);
|
||||
while (!time_after(jiffies, timeout)) {
|
||||
@@ -842,7 +843,8 @@ correct_plug_type:
|
||||
}
|
||||
if ((plug_type == MBHC_PLUG_TYPE_HEADSET ||
|
||||
plug_type == MBHC_PLUG_TYPE_HEADPHONE))
|
||||
mbhc->mbhc_cb->bcs_enable(mbhc, true);
|
||||
if (mbhc->mbhc_cb->bcs_enable)
|
||||
mbhc->mbhc_cb->bcs_enable(mbhc, true);
|
||||
|
||||
if (!wrk_complete) {
|
||||
/*
|
||||
|
Référencer dans un nouveau ticket
Bloquer un utilisateur