ASoC: max98090: Constify ACPI device ids and register defaults
authorMathias Krause <minipli@googlemail.com>
Sat, 13 Jun 2015 12:25:13 +0000 (14:25 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 15 Jun 2015 10:18:55 +0000 (11:18 +0100)
Constify the ACPI device ID array and the register map, no need to have
them writable at runtime.

Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/max98090.c

index 9d80c68abdd5145d6616ccdd348e9507adeab40a..f7b3577ada85a8d92b7fb34b81b98f05c546dfc7 100644 (file)
@@ -27,7 +27,7 @@
 #include "max98090.h"
 
 /* Allows for sparsely populated register maps */
-static struct reg_default max98090_reg[] = {
+static const struct reg_default max98090_reg[] = {
        { 0x00, 0x00 }, /* 00 Software Reset */
        { 0x03, 0x04 }, /* 03 Interrupt Masks */
        { 0x04, 0x00 }, /* 04 System Clock Quick */
@@ -2707,7 +2707,7 @@ static const struct of_device_id max98090_of_match[] = {
 MODULE_DEVICE_TABLE(of, max98090_of_match);
 
 #ifdef CONFIG_ACPI
-static struct acpi_device_id max98090_acpi_match[] = {
+static const struct acpi_device_id max98090_acpi_match[] = {
        { "193C9890", MAX98090 },
        { }
 };