Commit af5b4ea8 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] ite C99 and version/h

parent 7347b1fb
...@@ -51,7 +51,6 @@ ...@@ -51,7 +51,6 @@
* Revision history * Revision history
* 02.08.2001 0.1 Initial release * 02.08.2001 0.1 Initial release
*/ */
#include <linux/version.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/ioport.h> #include <linux/ioport.h>
...@@ -863,11 +862,11 @@ static int it8172_ioctl_mixdev(struct inode *inode, struct file *file, ...@@ -863,11 +862,11 @@ static int it8172_ioctl_mixdev(struct inode *inode, struct file *file,
} }
static /*const*/ struct file_operations it8172_mixer_fops = { static /*const*/ struct file_operations it8172_mixer_fops = {
owner: THIS_MODULE, .owner = THIS_MODULE,
llseek: no_llseek, .llseek = no_llseek,
ioctl: it8172_ioctl_mixdev, .ioctl = it8172_ioctl_mixdev,
open: it8172_open_mixdev, .open = it8172_open_mixdev,
release: it8172_release_mixdev, .release = it8172_release_mixdev,
}; };
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
...@@ -1630,15 +1629,15 @@ static int it8172_release(struct inode *inode, struct file *file) ...@@ -1630,15 +1629,15 @@ static int it8172_release(struct inode *inode, struct file *file)
} }
static /*const*/ struct file_operations it8172_audio_fops = { static /*const*/ struct file_operations it8172_audio_fops = {
owner: THIS_MODULE, .owner = THIS_MODULE,
llseek: no_llseek, .llseek = no_llseek,
read: it8172_read, .read = it8172_read,
write: it8172_write, .write = it8172_write,
poll: it8172_poll, .poll = it8172_poll,
ioctl: it8172_ioctl, .ioctl = it8172_ioctl,
mmap: it8172_mmap, .mmap = it8172_mmap,
open: it8172_open, .open = it8172_open,
release: it8172_release, .release = it8172_release,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment