Message ID | 20170920130125.12984-1-colin.king@canonical.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2b79b15c258a90c216efc14f0a5d4b88b4b2494d |
Headers | show |
On Wed, Sep 20, 2017 at 02:01:25PM +0100, Colin King wrote: > From: Colin Ian King <colin.king@canonical.com> > > The call to slk_tplg_fill_res_tkn is passing dir and pin_index in the > wrong order, they need to be in pin_index, dir order to match the function > slk_tplg_fill_res_tkn correctly. > > Detected by CoveritScan, CID#1454992 ("Arguments in wrong order") thanks for this. Acked-By: Vinod Koul <vinod.koul@intel.com> Tested-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com>
diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c index 22f768ca3c73..27bcb62568fb 100644 --- a/sound/soc/intel/skylake/skl-topology.c +++ b/sound/soc/intel/skylake/skl-topology.c @@ -2382,7 +2382,7 @@ static int skl_tplg_get_token(struct device *dev, case SKL_TKN_U32_MAX_MCPS: case SKL_TKN_U32_OBS: case SKL_TKN_U32_IBS: - ret = skl_tplg_fill_res_tkn(dev, tkn_elem, res, dir, pin_index); + ret = skl_tplg_fill_res_tkn(dev, tkn_elem, res, pin_index, dir); if (ret < 0) return ret;