From jengelh@computergmbh.de Tue Jan 22 14:09:04 2008 From: Jan Engelhardt Date: Tue, 22 Jan 2008 20:50:54 +0100 (CET) Subject: UIO: constify function pointer tables To: Greg Kroah-Hartman Message-ID: Signed-off-by: Jan Engelhardt Signed-off-by: Greg Kroah-Hartman --- drivers/uio/uio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- 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, } } -static struct file_operations uio_fops = { +static const struct file_operations uio_fops = { .owner = THIS_MODULE, .open = uio_open, .release = uio_release,