diff options
author | Jeeja KP <jeeja.kp@intel.com> | 2016-02-05 12:19:08 +0530 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-02-08 16:44:17 +0000 |
commit | cc6a4044bdeeb7a7769b7aedf9afe9e1464aadf0 (patch) | |
tree | 57194f5823e0d7f1850c6dfa918b265fb6488cc3 /sound/soc/intel/skylake/skl-tplg-interface.h | |
parent | c115fa5ec06a647c5aeff95d73e56d488145ec2e (diff) | |
download | talos-op-linux-cc6a4044bdeeb7a7769b7aedf9afe9e1464aadf0.tar.gz talos-op-linux-cc6a4044bdeeb7a7769b7aedf9afe9e1464aadf0.zip |
ASoC: Intel: Skylake: Allow module parameter set after bind
Some modules require params to be set after the module is bound
to all the pins connected.
The module provider initializes set_param flag for such modules
and we send params after binding. This is done by the function
skl_tplg_set_module_bind_params()
Signed-off-by: Jeeja KP <jeeja.kp@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-tplg-interface.h')
-rw-r--r-- | sound/soc/intel/skylake/skl-tplg-interface.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/intel/skylake/skl-tplg-interface.h b/sound/soc/intel/skylake/skl-tplg-interface.h index c9ae010b3cc8..1db88a63ac17 100644 --- a/sound/soc/intel/skylake/skl-tplg-interface.h +++ b/sound/soc/intel/skylake/skl-tplg-interface.h @@ -144,7 +144,8 @@ enum module_pin_type { enum skl_module_param_type { SKL_PARAM_DEFAULT = 0, SKL_PARAM_INIT, - SKL_PARAM_SET + SKL_PARAM_SET, + SKL_PARAM_BIND }; struct skl_dfw_module_pin { |