asoc: wcd: add NULL pointer check for wcd component

add NULL pointer check for wcd component.

Change-Id: Icfba04b689ace34f8f82b3ee58dd79ce139861b5
Signed-off-by: Yuhui Zhao <quic_yuhuzhao@quicinc.com>
This commit is contained in:
Yuhui Zhao
2022-10-27 11:24:29 +08:00
committed by Gerrit - the friendly Code Review server
parent c2adcdf8a0
commit c9ec60ea62
2 changed files with 4 additions and 2 deletions

View File

@@ -4681,8 +4681,9 @@ static int wcd938x_suspend(struct device *dev)
clear_bit(ALLOW_BUCK_DISABLE, &wcd938x->status_mask);
}
if (wcd938x->dapm_bias_off ||
(wcd938x->component &&
(snd_soc_component_get_bias_level(wcd938x->component) ==
SND_SOC_BIAS_OFF)) {
SND_SOC_BIAS_OFF))) {
msm_cdc_set_supplies_lpm_mode(wcd938x->dev,
wcd938x->supplies,
pdata->regulator,

View File

@@ -4483,8 +4483,9 @@ static int wcd939x_suspend(struct device *dev)
clear_bit(ALLOW_BUCK_DISABLE, &wcd939x->status_mask);
}
if (wcd939x->dapm_bias_off ||
(wcd939x->component &&
(snd_soc_component_get_bias_level(wcd939x->component) ==
SND_SOC_BIAS_OFF)) {
SND_SOC_BIAS_OFF))) {
msm_cdc_set_supplies_lpm_mode(wcd939x->dev,
wcd939x->supplies,
pdata->regulator,