aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sound/isa
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-01-05 15:48:07 +0100
committerTakashi Iwai <tiwai@suse.de>2020-01-05 16:15:05 +0100
commit8fc179162df5b307d8d1f8f4b6b7bb507742cd55 (patch)
tree6b1df815bf5df9139daf2e78f9c659bf871bf074 /sound/isa
parentALSA: wss: More constifications (diff)
downloadwireguard-linux-8fc179162df5b307d8d1f8f4b6b7bb507742cd55.tar.xz
wireguard-linux-8fc179162df5b307d8d1f8f4b6b7bb507742cd55.zip
ALSA: sc6000: More constification
Apply const prefix to the static resource tables. Just for minor optimization and no functional changes. Link: https://lore.kernel.org/r/20200105144823.29547-53-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa')
-rw-r--r--sound/isa/sc6000.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/sc6000.c b/sound/isa/sc6000.c
index 395ee3b1794d..3d0bea44f454 100644
--- a/sound/isa/sc6000.c
+++ b/sound/isa/sc6000.c
@@ -534,8 +534,8 @@ static int snd_sc6000_match(struct device *devptr, unsigned int dev)
static int snd_sc6000_probe(struct device *devptr, unsigned int dev)
{
- static int possible_irqs[] = { 5, 7, 9, 10, 11, -1 };
- static int possible_dmas[] = { 1, 3, 0, -1 };
+ static const int possible_irqs[] = { 5, 7, 9, 10, 11, -1 };
+ static const int possible_dmas[] = { 1, 3, 0, -1 };
int err;
int xirq = irq[dev];
int xdma = dma[dev];