diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-06-25 14:58:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 16:25:01 -0700 |
commit | f040ffab7488c02c0806ec8808fa619d463560f9 (patch) | |
tree | 01414de1e3abf227b165cc34a0b5ebb911a956e2 /sound | |
parent | 4f00945a8e35e46b98f3ec4adae747397393e3ee (diff) | |
download | linux-3.10-f040ffab7488c02c0806ec8808fa619d463560f9.tar.gz linux-3.10-f040ffab7488c02c0806ec8808fa619d463560f9.tar.bz2 linux-3.10-f040ffab7488c02c0806ec8808fa619d463560f9.zip |
[PATCH] sound/oss/rme96xx.c: remove kernel 2.2 #if's
This patch removes #if's for kernel 2.2 .
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/oss/rme96xx.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sound/oss/rme96xx.c b/sound/oss/rme96xx.c index b4278eecc91..7609c68a89f 100644 --- a/sound/oss/rme96xx.c +++ b/sound/oss/rme96xx.c @@ -1750,9 +1750,7 @@ static unsigned int rme96xx_poll(struct file *file, struct poll_table_struct *wa static struct file_operations rme96xx_audio_fops = { -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0) .owner = THIS_MODULE, -#endif .read = rme96xx_read, .write = rme96xx_write, .poll = rme96xx_poll, @@ -1852,9 +1850,7 @@ static int rme96xx_mixer_release(struct inode *inode, struct file *file) } static /*const*/ struct file_operations rme96xx_mixer_fops = { -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0) .owner = THIS_MODULE, -#endif .ioctl = rme96xx_mixer_ioctl, .open = rme96xx_mixer_open, .release = rme96xx_mixer_release, |