Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 84774
b: refs/heads/master
c: c8cece8
h: refs/heads/master
v: v3
  • Loading branch information
Jan Engelhardt authored and Linus Torvalds committed Feb 8, 2008
1 parent 045d62f commit c52bb19
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03a44825be987d720df854f63b2f7bd30e46bdde
refs/heads/master: c8cece84c9f36410de5164735e909603426e4d5f
4 changes: 2 additions & 2 deletions trunk/sound/oss/swarm_cs4297a.c
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,7 @@ static int cs4297a_ioctl_mixdev(struct inode *inode, struct file *file,
// ******************************************************************************************
// Mixer file operations struct.
// ******************************************************************************************
static /*const */ struct file_operations cs4297a_mixer_fops = {
static const struct file_operations cs4297a_mixer_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.ioctl = cs4297a_ioctl_mixdev,
Expand Down Expand Up @@ -2491,7 +2491,7 @@ static int cs4297a_open(struct inode *inode, struct file *file)
// ******************************************************************************************
// Wave (audio) file operations struct.
// ******************************************************************************************
static /*const */ struct file_operations cs4297a_audio_fops = {
static const struct file_operations cs4297a_audio_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.read = cs4297a_read,
Expand Down
4 changes: 2 additions & 2 deletions trunk/sound/oss/trident.c
Original file line number Diff line number Diff line change
Expand Up @@ -2878,7 +2878,7 @@ trident_release(struct inode *inode, struct file *file)
return 0;
}

static /*const */ struct file_operations trident_audio_fops = {
static const struct file_operations trident_audio_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.read = trident_read,
Expand Down Expand Up @@ -4104,7 +4104,7 @@ trident_ioctl_mixdev(struct inode *inode, struct file *file, unsigned int cmd,
return codec->mixer_ioctl(codec, cmd, arg);
}

static /*const */ struct file_operations trident_mixer_fops = {
static const struct file_operations trident_mixer_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.ioctl = trident_ioctl_mixdev,
Expand Down

0 comments on commit c52bb19

Please sign in to comment.