diff options
author | Kirill A. Shutemov <kirill.shutemov@linux.intel.com> | 2015-09-09 18:39:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-09-10 16:29:01 -0400 |
commit | 7cbea8dc0127a95226c7722a738ac6534950ef67 (patch) | |
tree | f62735c2bb1e523ba3d65051967ecc1228742981 /drivers/media | |
parent | 2a78b857d3755a6f8d0c70d7e365e473925987c1 (diff) |
mm: mark most vm_operations_struct const
With two exceptions (drm/qxl and drm/radeon) all vm_operations_struct
structs should be constant.
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Reviewed-by: Oleg Nesterov <oleg@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/platform/omap/omap_vout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/omap/omap_vout.c b/drivers/media/platform/omap/omap_vout.c index f09c5f17a42f..de2474e1132d 100644 --- a/drivers/media/platform/omap/omap_vout.c +++ b/drivers/media/platform/omap/omap_vout.c | |||
@@ -872,7 +872,7 @@ static void omap_vout_vm_close(struct vm_area_struct *vma) | |||
872 | vout->mmap_count--; | 872 | vout->mmap_count--; |
873 | } | 873 | } |
874 | 874 | ||
875 | static struct vm_operations_struct omap_vout_vm_ops = { | 875 | static const struct vm_operations_struct omap_vout_vm_ops = { |
876 | .open = omap_vout_vm_open, | 876 | .open = omap_vout_vm_open, |
877 | .close = omap_vout_vm_close, | 877 | .close = omap_vout_vm_close, |
878 | }; | 878 | }; |