mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
ASoC: ti: Add back local call to sdw_show_ping_status()
As the core no longer calls this debug helper add it back to the drivers that originally called it. Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://patch.msgid.link/20260623101814.24044-5-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
1921303a1d
commit
ea9ff3b7bc
|
|
@ -1445,8 +1445,10 @@ static s32 tac5xx2_sdca_dev_resume(struct device *dev)
|
|||
}
|
||||
|
||||
ret = sdw_slave_wait_for_init(slave, TAC5XX2_PROBE_TIMEOUT_MS);
|
||||
if (ret)
|
||||
if (ret) {
|
||||
sdw_show_ping_status(slave->bus, true);
|
||||
return ret;
|
||||
}
|
||||
|
||||
regcache_cache_only(tac_dev->regmap, false);
|
||||
regcache_mark_dirty(tac_dev->regmap);
|
||||
|
|
|
|||
|
|
@ -1083,8 +1083,10 @@ static s32 tas2783_sdca_dev_resume(struct device *dev)
|
|||
int ret;
|
||||
|
||||
ret = sdw_slave_wait_for_init(slave, TAS2783_PROBE_TIMEOUT);
|
||||
if (ret)
|
||||
if (ret) {
|
||||
sdw_show_ping_status(slave->bus, true);
|
||||
return ret;
|
||||
}
|
||||
|
||||
regcache_cache_only(tas_dev->regmap, false);
|
||||
regcache_sync(tas_dev->regmap);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user