Skip to content

Commit

Permalink
fixup! soundwire: intel: add support for MeteorLake additional clocks
Browse files Browse the repository at this point in the history
Needs to unlock before returning

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202402041508.xKhlqGcY-lkp@intel.com/
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
  • Loading branch information
plbossart committed Feb 6, 2024
1 parent d5fa700 commit 731f5a5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/soundwire/intel.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,8 @@ static int intel_link_power_up(struct sdw_intel *sdw)
} else {
dev_err(sdw->cdns.dev, "%s: invalid clock configuration, mclk %d lcap_mlcs %d\n",
__func__, prop->mclk_freq, lcap_mlcs);
return -EINVAL;
ret = -EINVAL;
goto out;
}
} else {
syncprd = SDW_SHIM_SYNC_SYNCPRD_VAL_38_4;
Expand Down

0 comments on commit 731f5a5

Please sign in to comment.