diff options
Diffstat (limited to 'sound/oss/ad1889.c')
-rw-r--r-- | sound/oss/ad1889.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/ad1889.c b/sound/oss/ad1889.c index 09263d72a519..f0724327493c 100644 --- a/sound/oss/ad1889.c +++ b/sound/oss/ad1889.c | |||
@@ -778,7 +778,7 @@ static int ad1889_release(struct inode *inode, struct file *file) | |||
778 | return 0; | 778 | return 0; |
779 | } | 779 | } |
780 | 780 | ||
781 | static struct file_operations ad1889_fops = { | 781 | static const struct file_operations ad1889_fops = { |
782 | .owner = THIS_MODULE, | 782 | .owner = THIS_MODULE, |
783 | .llseek = no_llseek, | 783 | .llseek = no_llseek, |
784 | .read = ad1889_read, | 784 | .read = ad1889_read, |
@@ -812,7 +812,7 @@ static int ad1889_mixer_ioctl(struct inode *inode, struct file *file, | |||
812 | return codec->mixer_ioctl(codec, cmd, arg); | 812 | return codec->mixer_ioctl(codec, cmd, arg); |
813 | } | 813 | } |
814 | 814 | ||
815 | static struct file_operations ad1889_mixer_fops = { | 815 | static const struct file_operations ad1889_mixer_fops = { |
816 | .owner = THIS_MODULE, | 816 | .owner = THIS_MODULE, |
817 | .llseek = no_llseek, | 817 | .llseek = no_llseek, |
818 | .ioctl = ad1889_mixer_ioctl, | 818 | .ioctl = ad1889_mixer_ioctl, |