Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion sound/soc/fsl/fsl_xcvr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1502,8 +1502,10 @@ static __maybe_unused int fsl_xcvr_runtime_suspend(struct device *dev)
ret = regmap_update_bits(xcvr->regmap, FSL_XCVR_EXT_CTRL,
FSL_XCVR_EXT_CTRL_CORE_RESET,
FSL_XCVR_EXT_CTRL_CORE_RESET);
if (ret < 0)
if (ret < 0) {
dev_err(dev, "Failed to assert M0+ core: %d\n", ret);
return ret;
}
}

regcache_cache_only(xcvr->regmap, true);
Expand Down