diff options
author | Bard Liao <yung-chuan.liao@linux.intel.com> | 2020-08-21 21:55:48 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-08-24 14:41:25 +0200 |
commit | 69a785da525e8bdfaa8a9c000fb3af714f0d719b (patch) | |
tree | 0c96b0fada0f259457237bca5435376672c21aea /sound/soc/intel/common/soc-acpi-intel-tgl-match.c | |
parent | ASoC: da7219: Fix I/O voltage range configuration during probe (diff) | |
download | linux-69a785da525e8bdfaa8a9c000fb3af714f0d719b.tar.xz linux-69a785da525e8bdfaa8a9c000fb3af714f0d719b.zip |
ASoC: Intel: modify SoundWire version id in acpi match table
The SoundWire version id of the existing RT1308, RT711, and RT715
codecs should be 2 (index for SoundWire 1.1), it was mistakenly set as
1 which pointed to the wrong version (SoundWire 1.0).
This off-by-one error had no functional impact so far since the
version number was not used, however in future patches this version
will be required.
Reviewed-by: Rander Wang <rander.wang@linux.intel.com>
Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200821195603.215535-2-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/common/soc-acpi-intel-tgl-match.c')
-rw-r--r-- | sound/soc/intel/common/soc-acpi-intel-tgl-match.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/common/soc-acpi-intel-tgl-match.c b/sound/soc/intel/common/soc-acpi-intel-tgl-match.c index 2ffa608d987d..472f58ddda1f 100644 --- a/sound/soc/intel/common/soc-acpi-intel-tgl-match.c +++ b/sound/soc/intel/common/soc-acpi-intel-tgl-match.c @@ -37,7 +37,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = { static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { { - .adr = 0x000010025D071100, + .adr = 0x000020025D071100, .num_endpoints = 1, .endpoints = &single_endpoint, } |