aboutsummaryrefslogtreecommitdiffstats
path: root/sound/oss
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-02-08 07:21:20 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-08 12:22:38 -0500
commitc8cece84c9f36410de5164735e909603426e4d5f (patch)
treec24e7779340f3d1bc67b8f28ad068b7cb636a285 /sound/oss
parent03a44825be987d720df854f63b2f7bd30e46bdde (diff)
OSS: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/oss')
-rw-r--r--sound/oss/swarm_cs4297a.c4
-rw-r--r--sound/oss/trident.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sound/oss/swarm_cs4297a.c b/sound/oss/swarm_cs4297a.c
index a8057f259553..044453a4ee5b 100644
--- a/sound/oss/swarm_cs4297a.c
+++ b/sound/oss/swarm_cs4297a.c
@@ -1580,7 +1580,7 @@ static int cs4297a_ioctl_mixdev(struct inode *inode, struct file *file,
1580// ****************************************************************************************** 1580// ******************************************************************************************
1581// Mixer file operations struct. 1581// Mixer file operations struct.
1582// ****************************************************************************************** 1582// ******************************************************************************************
1583static /*const */ struct file_operations cs4297a_mixer_fops = { 1583static const struct file_operations cs4297a_mixer_fops = {
1584 .owner = THIS_MODULE, 1584 .owner = THIS_MODULE,
1585 .llseek = no_llseek, 1585 .llseek = no_llseek,
1586 .ioctl = cs4297a_ioctl_mixdev, 1586 .ioctl = cs4297a_ioctl_mixdev,
@@ -2491,7 +2491,7 @@ static int cs4297a_open(struct inode *inode, struct file *file)
2491// ****************************************************************************************** 2491// ******************************************************************************************
2492// Wave (audio) file operations struct. 2492// Wave (audio) file operations struct.
2493// ****************************************************************************************** 2493// ******************************************************************************************
2494static /*const */ struct file_operations cs4297a_audio_fops = { 2494static const struct file_operations cs4297a_audio_fops = {
2495 .owner = THIS_MODULE, 2495 .owner = THIS_MODULE,
2496 .llseek = no_llseek, 2496 .llseek = no_llseek,
2497 .read = cs4297a_read, 2497 .read = cs4297a_read,
diff --git a/sound/oss/trident.c b/sound/oss/trident.c
index 6959ee1bd17f..d6af9065d1c0 100644
--- a/sound/oss/trident.c
+++ b/sound/oss/trident.c
@@ -2878,7 +2878,7 @@ trident_release(struct inode *inode, struct file *file)
2878 return 0; 2878 return 0;
2879} 2879}
2880 2880
2881static /*const */ struct file_operations trident_audio_fops = { 2881static const struct file_operations trident_audio_fops = {
2882 .owner = THIS_MODULE, 2882 .owner = THIS_MODULE,
2883 .llseek = no_llseek, 2883 .llseek = no_llseek,
2884 .read = trident_read, 2884 .read = trident_read,
@@ -4104,7 +4104,7 @@ trident_ioctl_mixdev(struct inode *inode, struct file *file, unsigned int cmd,
4104 return codec->mixer_ioctl(codec, cmd, arg); 4104 return codec->mixer_ioctl(codec, cmd, arg);
4105} 4105}
4106 4106
4107static /*const */ struct file_operations trident_mixer_fops = { 4107static const struct file_operations trident_mixer_fops = {
4108 .owner = THIS_MODULE, 4108 .owner = THIS_MODULE,
4109 .llseek = no_llseek, 4109 .llseek = no_llseek,
4110 .ioctl = trident_ioctl_mixdev, 4110 .ioctl = trident_ioctl_mixdev,