diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-12 21:01:14 +0530 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-12 23:31:40 +0200 |
commit | d1876fe679cbfdfdcc3e7f84b779c99c919ef3f6 (patch) | |
tree | 8dd823154d9be252ec2d33a653fd9798f0e3afda /sound | |
parent | 343fd50561e13f1efb5ba72cc16ab12dcaf07df5 (diff) | |
download | op-kernel-dev-d1876fe679cbfdfdcc3e7f84b779c99c919ef3f6.zip op-kernel-dev-d1876fe679cbfdfdcc3e7f84b779c99c919ef3f6.tar.gz |
ALSA: ca0106: make snd_pcm_hardware const
Make these const as they are only used during a copy operation.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/ca0106/ca0106_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 6165a57..2be30b8 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c @@ -296,7 +296,7 @@ static struct snd_ca0106_details ca0106_chip_details[] = { }; /* hardware definition */ -static struct snd_pcm_hardware snd_ca0106_playback_hw = { +static const struct snd_pcm_hardware snd_ca0106_playback_hw = { .info = SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | @@ -317,7 +317,7 @@ static struct snd_pcm_hardware snd_ca0106_playback_hw = { .fifo_size = 0, }; -static struct snd_pcm_hardware snd_ca0106_capture_hw = { +static const struct snd_pcm_hardware snd_ca0106_capture_hw = { .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_BLOCK_TRANSFER | |