diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-11-11 14:06:28 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-14 14:07:43 +0300 |
commit | 336cfbb05edf7b122ea927dad6c746608723eb25 (patch) | |
tree | be28c743d03ae9b57940562676f6c479643fcbea /sound/soc/intel/sst/sst_pvt.c | |
parent | 9b105fe447116ee3cd7fe3c09ca6a6d6a05c736b (diff) | |
download | linux-336cfbb05edf7b122ea927dad6c746608723eb25.tar.xz |
ASoC: Intel: mrfld- add ACPI module
Add the last ACPI module support which also uses core module like the PCI
part
Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@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/sst/sst_pvt.c')
-rw-r--r-- | sound/soc/intel/sst/sst_pvt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/intel/sst/sst_pvt.c b/sound/soc/intel/sst/sst_pvt.c index 9a5df1936516..4b7720864492 100644 --- a/sound/soc/intel/sst/sst_pvt.c +++ b/sound/soc/intel/sst/sst_pvt.c @@ -117,6 +117,7 @@ unsigned long long read_shim_data(struct intel_sst_drv *sst, int addr) switch (sst->dev_id) { case SST_MRFLD_PCI_ID: + case SST_BYT_ACPI_ID: val = sst_shim_read64(sst->shim, addr); break; } @@ -128,6 +129,7 @@ void write_shim_data(struct intel_sst_drv *sst, int addr, { switch (sst->dev_id) { case SST_MRFLD_PCI_ID: + case SST_BYT_ACPI_ID: sst_shim_write64(sst->shim, addr, (u64) data); break; } |