diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-06-09 12:35:43 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-06-09 09:20:37 +0200 |
commit | bf8334845598a172b42ee487b05eb4394c86bce8 (patch) | |
tree | d7166a3c86b13b94c9f4a78dbdc0e803c469e07f /sound/drivers | |
parent | 642b7589da26d59ce36f9a4b1b5188f95e514de9 (diff) | |
download | linux-bf8334845598a172b42ee487b05eb4394c86bce8.tar.gz linux-bf8334845598a172b42ee487b05eb4394c86bce8.tar.bz2 linux-bf8334845598a172b42ee487b05eb4394c86bce8.zip |
ALSA: vx: vx_pcm: constify vx_pcm_playback_ops and vx_pcm_capture_ops.
File size before:
text data bss dec hex filename
7126 240 0 7366 1cc6 sound/drivers/vx/vx_pcm.o
File size After adding 'const':
text data bss dec hex filename
7382 0 0 7382 1cd6 sound/drivers/vx/vx_pcm.o
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/vx/vx_pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/drivers/vx/vx_pcm.c b/sound/drivers/vx/vx_pcm.c index ea7b377f0378..d318a33b6cfb 100644 --- a/sound/drivers/vx/vx_pcm.c +++ b/sound/drivers/vx/vx_pcm.c @@ -873,7 +873,7 @@ static int vx_pcm_prepare(struct snd_pcm_substream *subs) /* * operators for PCM playback */ -static struct snd_pcm_ops vx_pcm_playback_ops = { +static const struct snd_pcm_ops vx_pcm_playback_ops = { .open = vx_pcm_playback_open, .close = vx_pcm_playback_close, .ioctl = snd_pcm_lib_ioctl, @@ -1095,7 +1095,7 @@ static snd_pcm_uframes_t vx_pcm_capture_pointer(struct snd_pcm_substream *subs) /* * operators for PCM capture */ -static struct snd_pcm_ops vx_pcm_capture_ops = { +static const struct snd_pcm_ops vx_pcm_capture_ops = { .open = vx_pcm_capture_open, .close = vx_pcm_capture_close, .ioctl = snd_pcm_lib_ioctl, |