From: Jie Yang Date: Tue, 23 Dec 2014 01:24:50 +0000 (+0800) Subject: ASoC: Intel: Store the entry_point read from FW file X-Git-Tag: v4.14-rc1~5985^2~13^2~6^4~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=85b88a8dd0c758464f31a9758deb27b31c0d5de7;p=platform%2Fkernel%2Flinux-rpi.git ASoC: Intel: Store the entry_point read from FW file To enable some modules from other than base FW, according to FW interface spec, we need pass the correct entry point param to FW, so here store the entry_point read from FW file for later usage. Signed-off-by: Jie Yang Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/sst-firmware.c b/sound/soc/intel/sst-firmware.c index 4a5bde9..cad6ea1 100644 --- a/sound/soc/intel/sst-firmware.c +++ b/sound/soc/intel/sst-firmware.c @@ -497,6 +497,7 @@ struct sst_module *sst_module_new(struct sst_fw *sst_fw, sst_module->sst_fw = sst_fw; sst_module->scratch_size = template->scratch_size; sst_module->persistent_size = template->persistent_size; + sst_module->entry = template->entry; INIT_LIST_HEAD(&sst_module->block_list); INIT_LIST_HEAD(&sst_module->runtime_list);