Commit 44d71507 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: es1938: Constify hw_constraints

snd_pcm_hw_constraint_list(), *_ratnums() and *_ratdens() receive the
const pointers.  Constify the corresponding static objects for better
hardening.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 8130829a
...@@ -436,7 +436,7 @@ static void snd_es1938_reset_fifo(struct es1938 *chip) ...@@ -436,7 +436,7 @@ static void snd_es1938_reset_fifo(struct es1938 *chip)
outb(0, SLSB_REG(chip, RESET)); outb(0, SLSB_REG(chip, RESET));
} }
static struct snd_ratnum clocks[2] = { static const struct snd_ratnum clocks[2] = {
{ {
.num = 793800, .num = 793800,
.den_min = 1, .den_min = 1,
...@@ -451,7 +451,7 @@ static struct snd_ratnum clocks[2] = { ...@@ -451,7 +451,7 @@ static struct snd_ratnum clocks[2] = {
} }
}; };
static struct snd_pcm_hw_constraint_ratnums hw_constraints_clocks = { static const struct snd_pcm_hw_constraint_ratnums hw_constraints_clocks = {
.nrats = 2, .nrats = 2,
.rats = clocks, .rats = clocks,
}; };
......
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