diff options
Diffstat (limited to 'sound/pci/cs4281.c')
-rw-r--r-- | sound/pci/cs4281.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/cs4281.c b/sound/pci/cs4281.c index c296fd0dbc9c..615d8a99d8c8 100644 --- a/sound/pci/cs4281.c +++ b/sound/pci/cs4281.c | |||
@@ -951,7 +951,7 @@ static int snd_cs4281_capture_close(struct snd_pcm_substream *substream) | |||
951 | return 0; | 951 | return 0; |
952 | } | 952 | } |
953 | 953 | ||
954 | static struct snd_pcm_ops snd_cs4281_playback_ops = { | 954 | static const struct snd_pcm_ops snd_cs4281_playback_ops = { |
955 | .open = snd_cs4281_playback_open, | 955 | .open = snd_cs4281_playback_open, |
956 | .close = snd_cs4281_playback_close, | 956 | .close = snd_cs4281_playback_close, |
957 | .ioctl = snd_pcm_lib_ioctl, | 957 | .ioctl = snd_pcm_lib_ioctl, |
@@ -962,7 +962,7 @@ static struct snd_pcm_ops snd_cs4281_playback_ops = { | |||
962 | .pointer = snd_cs4281_pointer, | 962 | .pointer = snd_cs4281_pointer, |
963 | }; | 963 | }; |
964 | 964 | ||
965 | static struct snd_pcm_ops snd_cs4281_capture_ops = { | 965 | static const struct snd_pcm_ops snd_cs4281_capture_ops = { |
966 | .open = snd_cs4281_capture_open, | 966 | .open = snd_cs4281_capture_open, |
967 | .close = snd_cs4281_capture_close, | 967 | .close = snd_cs4281_capture_close, |
968 | .ioctl = snd_pcm_lib_ioctl, | 968 | .ioctl = snd_pcm_lib_ioctl, |