aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ubi/ubi.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-01-11 17:55:39 -0500
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2009-01-18 07:02:08 -0500
commit4d187a88d3ee3be6a1a0b6859eb00f70e1601b5e (patch)
tree8b85414089fc5fc3610a186e0daa3c283da47776 /drivers/mtd/ubi/ubi.h
parentade44ce07c9316351ae321051221c9bad3af3a44 (diff)
UBI: constify file operations
Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi/ubi.h')
-rw-r--r--drivers/mtd/ubi/ubi.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h
index 4a8ec485c91d..381f0e1d0a74 100644
--- a/drivers/mtd/ubi/ubi.h
+++ b/drivers/mtd/ubi/ubi.h
@@ -449,9 +449,9 @@ struct ubi_device {
449}; 449};
450 450
451extern struct kmem_cache *ubi_wl_entry_slab; 451extern struct kmem_cache *ubi_wl_entry_slab;
452extern struct file_operations ubi_ctrl_cdev_operations; 452extern const struct file_operations ubi_ctrl_cdev_operations;
453extern struct file_operations ubi_cdev_operations; 453extern const struct file_operations ubi_cdev_operations;
454extern struct file_operations ubi_vol_cdev_operations; 454extern const struct file_operations ubi_vol_cdev_operations;
455extern struct class *ubi_class; 455extern struct class *ubi_class;
456extern struct mutex ubi_devices_mutex; 456extern struct mutex ubi_devices_mutex;
457 457