aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/uio
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-01-22 20:50:54 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2008-01-24 20:40:43 -0800
commit4f0146919be6bff47b5ea97252bcec0286e4dd19 (patch)
treef7c8f8fe40b81451e4fda1289984a41e96438cce /drivers/uio
parentDriver Core: constify the name passed to platform_device_register_simple (diff)
downloadlinux-dev-4f0146919be6bff47b5ea97252bcec0286e4dd19.tar.xz
linux-dev-4f0146919be6bff47b5ea97252bcec0286e4dd19.zip
UIO: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/uio')
-rw-r--r--drivers/uio/uio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c
index 03b66fb734a6..cc246faa3590 100644
--- a/drivers/uio/uio.c
+++ b/drivers/uio/uio.c
@@ -39,7 +39,7 @@ struct uio_device {
static int uio_major;
static DEFINE_IDR(uio_idr);
-static struct file_operations uio_fops;
+static const struct file_operations uio_fops;
/* UIO class infrastructure */
static struct uio_class {
@@ -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,
.open = uio_open,
.release = uio_release,