aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Krause <minipli@googlemail.com>2015-06-13 08:25:16 -0400
committerMark Brown <broonie@kernel.org>2015-06-15 06:32:07 -0400
commite85dae7048dc53b6945219b02c56041e4a661e6c (patch)
tree50db9185eb8b1af9aecddf7d1635f59b4fe621fe
parente8ed6702746650d09a6cb3fc89d979a92f1ed49b (diff)
ASoC: intel: Constify ACPI device ids
Constify the ACPI device ID array, it doesn't need to be writable at runtime. Signed-off-by: Mathias Krause <minipli@googlemail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/intel/common/sst-acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/common/sst-acpi.c b/sound/soc/intel/common/sst-acpi.c
index 42f293f9c6e2..67b6d3d52f57 100644
--- a/sound/soc/intel/common/sst-acpi.c
+++ b/sound/soc/intel/common/sst-acpi.c
@@ -263,7 +263,7 @@ static struct sst_acpi_desc sst_acpi_baytrail_desc = {
263 .resindex_dma_base = -1, 263 .resindex_dma_base = -1,
264}; 264};
265 265
266static struct acpi_device_id sst_acpi_match[] = { 266static const struct acpi_device_id sst_acpi_match[] = {
267 { "INT33C8", (unsigned long)&sst_acpi_haswell_desc }, 267 { "INT33C8", (unsigned long)&sst_acpi_haswell_desc },
268 { "INT3438", (unsigned long)&sst_acpi_broadwell_desc }, 268 { "INT3438", (unsigned long)&sst_acpi_broadwell_desc },
269 { "80860F28", (unsigned long)&sst_acpi_baytrail_desc }, 269 { "80860F28", (unsigned long)&sst_acpi_baytrail_desc },