aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ubi/cdev.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-01-11 23:55:39 +0100
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2009-01-18 14:02:08 +0200
commit4d187a88d3ee3be6a1a0b6859eb00f70e1601b5e (patch)
tree8b85414089fc5fc3610a186e0daa3c283da47776 /drivers/mtd/ubi/cdev.c
parentade44ce07c9316351ae321051221c9bad3af3a44 (diff)
downloadkernel_samsung_smdk4412-4d187a88d3ee3be6a1a0b6859eb00f70e1601b5e.tar.gz
kernel_samsung_smdk4412-4d187a88d3ee3be6a1a0b6859eb00f70e1601b5e.tar.bz2
kernel_samsung_smdk4412-4d187a88d3ee3be6a1a0b6859eb00f70e1601b5e.zip
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/cdev.c')
-rw-r--r--drivers/mtd/ubi/cdev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/ubi/cdev.c b/drivers/mtd/ubi/cdev.c
index c183be99c6c..d99935c0f3c 100644
--- a/drivers/mtd/ubi/cdev.c
+++ b/drivers/mtd/ubi/cdev.c
@@ -1025,20 +1025,20 @@ static int ctrl_cdev_ioctl(struct inode *inode, struct file *file,
}
/* UBI control character device operations */
-struct file_operations ubi_ctrl_cdev_operations = {
+const struct file_operations ubi_ctrl_cdev_operations = {
.ioctl = ctrl_cdev_ioctl,
.owner = THIS_MODULE,
};
/* UBI character device operations */
-struct file_operations ubi_cdev_operations = {
+const struct file_operations ubi_cdev_operations = {
.owner = THIS_MODULE,
.ioctl = ubi_cdev_ioctl,
.llseek = no_llseek,
};
/* UBI volume character device operations */
-struct file_operations ubi_vol_cdev_operations = {
+const struct file_operations ubi_vol_cdev_operations = {
.owner = THIS_MODULE,
.open = vol_cdev_open,
.release = vol_cdev_release,