mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
soundwire: intel: add helper for initialization
Move code to helper for reuse in power management routines Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20191022235448.17586-4-pierre-louis.bossart@linux.intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
675d4c9aba
commit
dfbe642d1e
@ -897,6 +897,15 @@ static struct sdw_master_ops sdw_intel_ops = {
|
||||
.post_bank_switch = intel_post_bank_switch,
|
||||
};
|
||||
|
||||
static int intel_init(struct sdw_intel *sdw)
|
||||
{
|
||||
/* Initialize shim and controller */
|
||||
intel_link_power_up(sdw);
|
||||
intel_shim_init(sdw);
|
||||
|
||||
return sdw_cdns_init(&sdw->cdns);
|
||||
}
|
||||
|
||||
/*
|
||||
* probe and init
|
||||
*/
|
||||
@ -939,11 +948,8 @@ static int intel_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Initialize shim and controller */
|
||||
intel_link_power_up(sdw);
|
||||
intel_shim_init(sdw);
|
||||
|
||||
ret = sdw_cdns_init(&sdw->cdns);
|
||||
/* Initialize shim, controller and Cadence IP */
|
||||
ret = intel_init(sdw);
|
||||
if (ret)
|
||||
goto err_init;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user