diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-12 11:31:14 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-08-12 17:31:40 -0400 |
commit | d1876fe679cbfdfdcc3e7f84b779c99c919ef3f6 (patch) | |
tree | 8dd823154d9be252ec2d33a653fd9798f0e3afda | |
parent | 343fd50561e13f1efb5ba72cc16ab12dcaf07df5 (diff) |
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>
-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 6165a57a94ae..2be30b8b6bc9 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[] = { | |||
296 | }; | 296 | }; |
297 | 297 | ||
298 | /* hardware definition */ | 298 | /* hardware definition */ |
299 | static struct snd_pcm_hardware snd_ca0106_playback_hw = { | 299 | static const struct snd_pcm_hardware snd_ca0106_playback_hw = { |
300 | .info = SNDRV_PCM_INFO_MMAP | | 300 | .info = SNDRV_PCM_INFO_MMAP | |
301 | SNDRV_PCM_INFO_INTERLEAVED | | 301 | SNDRV_PCM_INFO_INTERLEAVED | |
302 | SNDRV_PCM_INFO_BLOCK_TRANSFER | | 302 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
@@ -317,7 +317,7 @@ static struct snd_pcm_hardware snd_ca0106_playback_hw = { | |||
317 | .fifo_size = 0, | 317 | .fifo_size = 0, |
318 | }; | 318 | }; |
319 | 319 | ||
320 | static struct snd_pcm_hardware snd_ca0106_capture_hw = { | 320 | static const struct snd_pcm_hardware snd_ca0106_capture_hw = { |
321 | .info = (SNDRV_PCM_INFO_MMAP | | 321 | .info = (SNDRV_PCM_INFO_MMAP | |
322 | SNDRV_PCM_INFO_INTERLEAVED | | 322 | SNDRV_PCM_INFO_INTERLEAVED | |
323 | SNDRV_PCM_INFO_BLOCK_TRANSFER | | 323 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |