diff options
Diffstat (limited to 'drivers/char/mspec.c')
-rw-r--r-- | drivers/char/mspec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/mspec.c b/drivers/char/mspec.c index 235e89226112..7ac30612068b 100644 --- a/drivers/char/mspec.c +++ b/drivers/char/mspec.c | |||
@@ -291,7 +291,7 @@ uncached_mmap(struct file *file, struct vm_area_struct *vma) | |||
291 | return mspec_mmap(file, vma, MSPEC_UNCACHED); | 291 | return mspec_mmap(file, vma, MSPEC_UNCACHED); |
292 | } | 292 | } |
293 | 293 | ||
294 | static struct file_operations fetchop_fops = { | 294 | static const struct file_operations fetchop_fops = { |
295 | .owner = THIS_MODULE, | 295 | .owner = THIS_MODULE, |
296 | .mmap = fetchop_mmap | 296 | .mmap = fetchop_mmap |
297 | }; | 297 | }; |
@@ -302,7 +302,7 @@ static struct miscdevice fetchop_miscdev = { | |||
302 | .fops = &fetchop_fops | 302 | .fops = &fetchop_fops |
303 | }; | 303 | }; |
304 | 304 | ||
305 | static struct file_operations cached_fops = { | 305 | static const struct file_operations cached_fops = { |
306 | .owner = THIS_MODULE, | 306 | .owner = THIS_MODULE, |
307 | .mmap = cached_mmap | 307 | .mmap = cached_mmap |
308 | }; | 308 | }; |
@@ -313,7 +313,7 @@ static struct miscdevice cached_miscdev = { | |||
313 | .fops = &cached_fops | 313 | .fops = &cached_fops |
314 | }; | 314 | }; |
315 | 315 | ||
316 | static struct file_operations uncached_fops = { | 316 | static const struct file_operations uncached_fops = { |
317 | .owner = THIS_MODULE, | 317 | .owner = THIS_MODULE, |
318 | .mmap = uncached_mmap | 318 | .mmap = uncached_mmap |
319 | }; | 319 | }; |