diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:17:11 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:43 +0100 |
commit | cd6e03122be08fd6d2af0445d5f2527563d6bf49 (patch) | |
tree | 6a582b88d9a8ece30806066d2482bb1c9c23154a | |
parent | c274d967cee5859c91c200905f038cac84ebd464 (diff) | |
download | linux-cd6e03122be08fd6d2af0445d5f2527563d6bf49.tar.gz linux-cd6e03122be08fd6d2af0445d5f2527563d6bf49.tar.bz2 linux-cd6e03122be08fd6d2af0445d5f2527563d6bf49.zip |
ALSA: es1968: Constify snd_es1968_tea575x_gpios
The snd_es1968_tea575x_gpios table is referred as read-only, hence it
can be declared as const gracefully.
There should be no functional changes by this patch.
Link: https://lore.kernel.org/r/20200103081714.9560-56-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/pci/es1968.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/es1968.c b/sound/pci/es1968.c index f23a935267c3..affd3e8d7a67 100644 --- a/sound/pci/es1968.c +++ b/sound/pci/es1968.c @@ -2529,7 +2529,7 @@ struct snd_es1968_tea575x_gpio { char *name; }; -static struct snd_es1968_tea575x_gpio snd_es1968_tea575x_gpios[] = { +static const struct snd_es1968_tea575x_gpio snd_es1968_tea575x_gpios[] = { { .data = 6, .clk = 7, .wren = 8, .most = 9, .name = "SF64-PCE2" }, { .data = 7, .clk = 8, .wren = 6, .most = 10, .name = "M56VAP" }, }; |