Commit cee158b5 authored by Frederico Cadete's avatar Frederico Cadete Committed by Greg Kroah-Hartman

staging: unisys: declare visorchipset_ioctl static

This symbol is not exported nor referenced anywhere else in the kernel.
Signed-off-by: default avatarFrederico Cadete <frederico@cadete.eu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9729018c
......@@ -36,7 +36,8 @@ static BOOL registered = FALSE;
static int visorchipset_open(struct inode *inode, struct file *file);
static int visorchipset_release(struct inode *inode, struct file *file);
static int visorchipset_mmap(struct file *file, struct vm_area_struct *vma);
long visorchipset_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
static long visorchipset_ioctl(struct file *file, unsigned int cmd,
unsigned long arg);
static const struct file_operations visorchipset_fops = {
.owner = THIS_MODULE,
......@@ -165,7 +166,8 @@ visorchipset_mmap(struct file *file, struct vm_area_struct *vma)
return 0;
}
long visorchipset_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
static long visorchipset_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
s64 adjustment;
s64 vrtc_offset;
......
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