diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:16:36 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-01-03 09:24:07 +0100 |
commit | df76996a2c5369769b23a017b6303f7ecacb277b (patch) | |
tree | b786cedb97f7f5034325a82424be34948a19d2d7 /sound/core/pcm_timer.c | |
parent | e382d7fcfc3ff21c8ba97a29bd451a289f57b757 (diff) | |
download | linux-df76996a2c5369769b23a017b6303f7ecacb277b.tar.bz2 |
ALSA: timer: Constify snd_timer_hardware definitions
Most of snd_timer_hardware definitions do simply copying to another
struct as-is. Mark them as const for further optimization.
There should be no functional changes by this patch.
Link: https://lore.kernel.org/r/20200103081714.9560-21-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/pcm_timer.c')
-rw-r--r-- | sound/core/pcm_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/pcm_timer.c b/sound/core/pcm_timer.c index 7928bda235c1..c43484b22b34 100644 --- a/sound/core/pcm_timer.c +++ b/sound/core/pcm_timer.c @@ -75,7 +75,7 @@ static int snd_pcm_timer_stop(struct snd_timer * timer) return 0; } -static struct snd_timer_hardware snd_pcm_timer = +static const struct snd_timer_hardware snd_pcm_timer = { .flags = SNDRV_TIMER_HW_AUTO | SNDRV_TIMER_HW_SLAVE, .resolution = 0, |