mirror of https://gitee.com/openkylin/linux.git
staging: unisys: declare visorchipset_ioctl static
This symbol is not exported nor referenced anywhere else in the kernel. Signed-off-by: Frederico Cadete <frederico@cadete.eu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9729018cd6
commit
cee158b5a6
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue