Commit 4f014691 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Greg Kroah-Hartman

UIO: constify function pointer tables

Signed-off-by: default avatarJan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ae72cddb
...@@ -39,7 +39,7 @@ struct uio_device { ...@@ -39,7 +39,7 @@ struct uio_device {
static int uio_major; static int uio_major;
static DEFINE_IDR(uio_idr); static DEFINE_IDR(uio_idr);
static struct file_operations uio_fops; static const struct file_operations uio_fops;
/* UIO class infrastructure */ /* UIO class infrastructure */
static struct uio_class { static struct uio_class {
...@@ -508,7 +508,7 @@ static int uio_mmap(struct file *filep, struct vm_area_struct *vma) ...@@ -508,7 +508,7 @@ static int uio_mmap(struct file *filep, struct vm_area_struct *vma)
} }
} }
static struct file_operations uio_fops = { static const struct file_operations uio_fops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.open = uio_open, .open = uio_open,
.release = uio_release, .release = uio_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