Commit 0c52d3e2 authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Mark Brown

ASoC: Intel: soc-acpi: add ull suffix for SoundWire _ADR values

Sparse throws the following type of warnings:

sound/soc/intel/common/soc-acpi-intel-adl-match.c:34:24: error:
constant 0x000020025D071100 is so big it is long

Let's add the 'ull' suffix to make this go away and find real issues.
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: default avatarPaul Olaru <paul.olaru@oss.nxp.com>
Reviewed-by: default avatarGuennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Reviewed-by: default avatarRander Wang <rander.wang@intel.com>
Link: https://lore.kernel.org/r/20210621194057.21711-9-pierre-louis.bossart@linux.intel.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 0a1f3958
...@@ -31,7 +31,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = { ...@@ -31,7 +31,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = {
static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
{ {
.adr = 0x000020025D071100, .adr = 0x000020025D071100ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -40,7 +40,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { ...@@ -40,7 +40,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -49,7 +49,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { ...@@ -49,7 +49,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
{ {
.adr = 0x000220025D130800, .adr = 0x000220025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1308-2" .name_prefix = "rt1308-2"
...@@ -58,7 +58,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { ...@@ -58,7 +58,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
{ {
.adr = 0x000320025D071500, .adr = 0x000320025D071500ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt715" .name_prefix = "rt715"
...@@ -67,7 +67,7 @@ static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { ...@@ -67,7 +67,7 @@ static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = { static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = {
{ {
.adr = 0x000030025D071101, .adr = 0x000030025D071101ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -76,7 +76,7 @@ static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = { ...@@ -76,7 +76,7 @@ static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = {
{ {
.adr = 0x000131025D131601, /* unique ID is set for some reason */ .adr = 0x000131025D131601ull, /* unique ID is set for some reason */
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1316-1" .name_prefix = "rt1316-1"
...@@ -85,7 +85,7 @@ static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = { ...@@ -85,7 +85,7 @@ static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = {
{ {
.adr = 0x000230025D131601, .adr = 0x000230025D131601ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1316-2" .name_prefix = "rt1316-2"
...@@ -94,7 +94,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = { ...@@ -94,7 +94,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_3_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_3_group1_adr[] = {
{ {
.adr = 0x000330025D131601, .adr = 0x000330025D131601ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1316-2" .name_prefix = "rt1316-2"
...@@ -103,7 +103,7 @@ static const struct snd_soc_acpi_adr_device rt1316_3_group1_adr[] = { ...@@ -103,7 +103,7 @@ static const struct snd_soc_acpi_adr_device rt1316_3_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_2_single_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_2_single_adr[] = {
{ {
.adr = 0x000230025D131601, .adr = 0x000230025D131601ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt1316-1" .name_prefix = "rt1316-1"
...@@ -112,7 +112,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_single_adr[] = { ...@@ -112,7 +112,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_single_adr[] = {
static const struct snd_soc_acpi_adr_device rt714_0_adr[] = { static const struct snd_soc_acpi_adr_device rt714_0_adr[] = {
{ {
.adr = 0x000030025D071401, .adr = 0x000030025D071401ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt714" .name_prefix = "rt714"
...@@ -121,7 +121,7 @@ static const struct snd_soc_acpi_adr_device rt714_0_adr[] = { ...@@ -121,7 +121,7 @@ static const struct snd_soc_acpi_adr_device rt714_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt714_2_adr[] = { static const struct snd_soc_acpi_adr_device rt714_2_adr[] = {
{ {
.adr = 0x000230025D071401, .adr = 0x000230025D071401ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt714" .name_prefix = "rt714"
...@@ -130,7 +130,7 @@ static const struct snd_soc_acpi_adr_device rt714_2_adr[] = { ...@@ -130,7 +130,7 @@ static const struct snd_soc_acpi_adr_device rt714_2_adr[] = {
static const struct snd_soc_acpi_adr_device rt714_3_adr[] = { static const struct snd_soc_acpi_adr_device rt714_3_adr[] = {
{ {
.adr = 0x000330025D071401, .adr = 0x000330025D071401ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt714" .name_prefix = "rt714"
......
...@@ -108,7 +108,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = { ...@@ -108,7 +108,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = {
static const struct snd_soc_acpi_adr_device rt700_1_adr[] = { static const struct snd_soc_acpi_adr_device rt700_1_adr[] = {
{ {
.adr = 0x000110025D070000, .adr = 0x000110025D070000ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt700" .name_prefix = "rt700"
...@@ -126,7 +126,7 @@ static const struct snd_soc_acpi_link_adr cml_rvp[] = { ...@@ -126,7 +126,7 @@ static const struct snd_soc_acpi_link_adr cml_rvp[] = {
static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
{ {
.adr = 0x000020025D071100, .adr = 0x000020025D071100ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -135,7 +135,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { ...@@ -135,7 +135,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -144,7 +144,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = { ...@@ -144,7 +144,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -153,7 +153,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { ...@@ -153,7 +153,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
{ {
.adr = 0x000220025D130800, .adr = 0x000220025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1308-2" .name_prefix = "rt1308-2"
...@@ -162,7 +162,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { ...@@ -162,7 +162,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
{ {
.adr = 0x000320025D071500, .adr = 0x000320025D071500ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt715" .name_prefix = "rt715"
...@@ -171,7 +171,7 @@ static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { ...@@ -171,7 +171,7 @@ static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = { static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = {
{ {
.adr = 0x000030025D071101, .adr = 0x000030025D071101ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -180,7 +180,7 @@ static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = { ...@@ -180,7 +180,7 @@ static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = {
{ {
.adr = 0x000131025D131601, /* unique ID is set for some reason */ .adr = 0x000131025D131601ull, /* unique ID is set for some reason */
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1316-1" .name_prefix = "rt1316-1"
...@@ -189,7 +189,7 @@ static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = { ...@@ -189,7 +189,7 @@ static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = {
{ {
.adr = 0x000230025D131601, .adr = 0x000230025D131601ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1316-2" .name_prefix = "rt1316-2"
...@@ -198,7 +198,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = { ...@@ -198,7 +198,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt714_3_adr[] = { static const struct snd_soc_acpi_adr_device rt714_3_adr[] = {
{ {
.adr = 0x000330025D071401, .adr = 0x000330025D071401ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt714" .name_prefix = "rt714"
......
...@@ -36,7 +36,7 @@ static const struct snd_soc_acpi_endpoint single_endpoint = { ...@@ -36,7 +36,7 @@ static const struct snd_soc_acpi_endpoint single_endpoint = {
static const struct snd_soc_acpi_adr_device rt5682_2_adr[] = { static const struct snd_soc_acpi_adr_device rt5682_2_adr[] = {
{ {
.adr = 0x000220025D568200, .adr = 0x000220025D568200ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt5682" .name_prefix = "rt5682"
......
...@@ -56,7 +56,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = { ...@@ -56,7 +56,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = {
static const struct snd_soc_acpi_adr_device rt700_0_adr[] = { static const struct snd_soc_acpi_adr_device rt700_0_adr[] = {
{ {
.adr = 0x000010025D070000, .adr = 0x000010025D070000ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt700" .name_prefix = "rt700"
...@@ -74,7 +74,7 @@ static const struct snd_soc_acpi_link_adr icl_rvp[] = { ...@@ -74,7 +74,7 @@ static const struct snd_soc_acpi_link_adr icl_rvp[] = {
static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
{ {
.adr = 0x000020025D071100, .adr = 0x000020025D071100ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -83,7 +83,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { ...@@ -83,7 +83,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -92,7 +92,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_adr[] = { ...@@ -92,7 +92,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -101,7 +101,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { ...@@ -101,7 +101,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
{ {
.adr = 0x000220025D130800, .adr = 0x000220025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1308-2" .name_prefix = "rt1308-2"
...@@ -110,7 +110,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { ...@@ -110,7 +110,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
{ {
.adr = 0x000320025D071500, .adr = 0x000320025D071500ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt715" .name_prefix = "rt715"
......
...@@ -37,7 +37,7 @@ static const struct snd_soc_acpi_endpoint spk_r_endpoint = { ...@@ -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[] = { static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
{ {
.adr = 0x000020025D071100, .adr = 0x000020025D071100ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -46,7 +46,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = { ...@@ -46,7 +46,7 @@ static const struct snd_soc_acpi_adr_device rt711_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt711_1_adr[] = { static const struct snd_soc_acpi_adr_device rt711_1_adr[] = {
{ {
.adr = 0x000120025D071100, .adr = 0x000120025D071100ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -55,13 +55,13 @@ static const struct snd_soc_acpi_adr_device rt711_1_adr[] = { ...@@ -55,13 +55,13 @@ static const struct snd_soc_acpi_adr_device rt711_1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_dual_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_dual_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
}, },
{ {
.adr = 0x000122025D130800, .adr = 0x000122025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1308-2" .name_prefix = "rt1308-2"
...@@ -70,7 +70,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_dual_adr[] = { ...@@ -70,7 +70,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_dual_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -79,7 +79,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = { ...@@ -79,7 +79,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_single_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_2_single_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_2_single_adr[] = {
{ {
.adr = 0x000220025D130800, .adr = 0x000220025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -88,7 +88,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_single_adr[] = { ...@@ -88,7 +88,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_single_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
{ {
.adr = 0x000120025D130800, .adr = 0x000120025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1308-1" .name_prefix = "rt1308-1"
...@@ -97,7 +97,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = { ...@@ -97,7 +97,7 @@ static const struct snd_soc_acpi_adr_device rt1308_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
{ {
.adr = 0x000220025D130800, .adr = 0x000220025D130800ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1308-2" .name_prefix = "rt1308-2"
...@@ -106,7 +106,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = { ...@@ -106,7 +106,7 @@ static const struct snd_soc_acpi_adr_device rt1308_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt715_0_adr[] = { static const struct snd_soc_acpi_adr_device rt715_0_adr[] = {
{ {
.adr = 0x000021025D071500, .adr = 0x000021025D071500ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt715" .name_prefix = "rt715"
...@@ -115,7 +115,7 @@ static const struct snd_soc_acpi_adr_device rt715_0_adr[] = { ...@@ -115,7 +115,7 @@ static const struct snd_soc_acpi_adr_device rt715_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
{ {
.adr = 0x000320025D071500, .adr = 0x000320025D071500ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt715" .name_prefix = "rt715"
...@@ -124,13 +124,13 @@ static const struct snd_soc_acpi_adr_device rt715_3_adr[] = { ...@@ -124,13 +124,13 @@ static const struct snd_soc_acpi_adr_device rt715_3_adr[] = {
static const struct snd_soc_acpi_adr_device mx8373_1_adr[] = { static const struct snd_soc_acpi_adr_device mx8373_1_adr[] = {
{ {
.adr = 0x000123019F837300, .adr = 0x000123019F837300ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "Right" .name_prefix = "Right"
}, },
{ {
.adr = 0x000127019F837300, .adr = 0x000127019F837300ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "Left" .name_prefix = "Left"
...@@ -139,7 +139,7 @@ static const struct snd_soc_acpi_adr_device mx8373_1_adr[] = { ...@@ -139,7 +139,7 @@ static const struct snd_soc_acpi_adr_device mx8373_1_adr[] = {
static const struct snd_soc_acpi_adr_device rt5682_0_adr[] = { static const struct snd_soc_acpi_adr_device rt5682_0_adr[] = {
{ {
.adr = 0x000021025D568200, .adr = 0x000021025D568200ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt5682" .name_prefix = "rt5682"
...@@ -148,7 +148,7 @@ static const struct snd_soc_acpi_adr_device rt5682_0_adr[] = { ...@@ -148,7 +148,7 @@ static const struct snd_soc_acpi_adr_device rt5682_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = { static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = {
{ {
.adr = 0x000030025D071101, .adr = 0x000030025D071101ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt711" .name_prefix = "rt711"
...@@ -157,7 +157,7 @@ static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = { ...@@ -157,7 +157,7 @@ static const struct snd_soc_acpi_adr_device rt711_sdca_0_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = {
{ {
.adr = 0x000131025D131601, /* unique ID is set for some reason */ .adr = 0x000131025D131601ull, /* unique ID is set for some reason */
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_l_endpoint, .endpoints = &spk_l_endpoint,
.name_prefix = "rt1316-1" .name_prefix = "rt1316-1"
...@@ -166,7 +166,7 @@ static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = { ...@@ -166,7 +166,7 @@ static const struct snd_soc_acpi_adr_device rt1316_1_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = { static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = {
{ {
.adr = 0x000230025D131601, .adr = 0x000230025D131601ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &spk_r_endpoint, .endpoints = &spk_r_endpoint,
.name_prefix = "rt1316-2" .name_prefix = "rt1316-2"
...@@ -175,7 +175,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = { ...@@ -175,7 +175,7 @@ static const struct snd_soc_acpi_adr_device rt1316_2_group1_adr[] = {
static const struct snd_soc_acpi_adr_device rt714_3_adr[] = { static const struct snd_soc_acpi_adr_device rt714_3_adr[] = {
{ {
.adr = 0x000330025D071401, .adr = 0x000330025D071401ull,
.num_endpoints = 1, .num_endpoints = 1,
.endpoints = &single_endpoint, .endpoints = &single_endpoint,
.name_prefix = "rt714" .name_prefix = "rt714"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment