diff options
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/landisk/landisk_pwb.c | 2 | ||||
-rw-r--r-- | arch/sh/mm/cache-debugfs.c | 2 | ||||
-rw-r--r-- | arch/sh/mm/pmb.c | 2 | ||||
-rw-r--r-- | arch/sh/oprofile/op_model_sh7750.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/arch/sh/boards/landisk/landisk_pwb.c b/arch/sh/boards/landisk/landisk_pwb.c index e62524978160..47a63c6617ed 100644 --- a/arch/sh/boards/landisk/landisk_pwb.c +++ b/arch/sh/boards/landisk/landisk_pwb.c | |||
@@ -150,7 +150,7 @@ static irqreturn_t sw_interrupt(int irq, void *dev_id) | |||
150 | return IRQ_HANDLED; | 150 | return IRQ_HANDLED; |
151 | } | 151 | } |
152 | 152 | ||
153 | static struct file_operations swdrv_fops = { | 153 | static const struct file_operations swdrv_fops = { |
154 | .read = swdrv_read, /* read */ | 154 | .read = swdrv_read, /* read */ |
155 | .write = swdrv_write, /* write */ | 155 | .write = swdrv_write, /* write */ |
156 | .open = swdrv_open, /* open */ | 156 | .open = swdrv_open, /* open */ |
diff --git a/arch/sh/mm/cache-debugfs.c b/arch/sh/mm/cache-debugfs.c index e0122bd33ddb..909dcfa8c8c6 100644 --- a/arch/sh/mm/cache-debugfs.c +++ b/arch/sh/mm/cache-debugfs.c | |||
@@ -114,7 +114,7 @@ static int cache_debugfs_open(struct inode *inode, struct file *file) | |||
114 | return single_open(file, cache_seq_show, inode->i_private); | 114 | return single_open(file, cache_seq_show, inode->i_private); |
115 | } | 115 | } |
116 | 116 | ||
117 | static struct file_operations cache_debugfs_fops = { | 117 | static const struct file_operations cache_debugfs_fops = { |
118 | .owner = THIS_MODULE, | 118 | .owner = THIS_MODULE, |
119 | .open = cache_debugfs_open, | 119 | .open = cache_debugfs_open, |
120 | .read = seq_read, | 120 | .read = seq_read, |
diff --git a/arch/sh/mm/pmb.c b/arch/sh/mm/pmb.c index b60ad83a7635..d0d45e2e0ab3 100644 --- a/arch/sh/mm/pmb.c +++ b/arch/sh/mm/pmb.c | |||
@@ -378,7 +378,7 @@ static int pmb_debugfs_open(struct inode *inode, struct file *file) | |||
378 | return single_open(file, pmb_seq_show, NULL); | 378 | return single_open(file, pmb_seq_show, NULL); |
379 | } | 379 | } |
380 | 380 | ||
381 | static struct file_operations pmb_debugfs_fops = { | 381 | static const struct file_operations pmb_debugfs_fops = { |
382 | .owner = THIS_MODULE, | 382 | .owner = THIS_MODULE, |
383 | .open = pmb_debugfs_open, | 383 | .open = pmb_debugfs_open, |
384 | .read = seq_read, | 384 | .read = seq_read, |
diff --git a/arch/sh/oprofile/op_model_sh7750.c b/arch/sh/oprofile/op_model_sh7750.c index 60402eec4b4d..0104e44bc76a 100644 --- a/arch/sh/oprofile/op_model_sh7750.c +++ b/arch/sh/oprofile/op_model_sh7750.c | |||
@@ -187,7 +187,7 @@ static ssize_t sh7750_write_count(struct file *file, const char __user *buf, | |||
187 | return count; | 187 | return count; |
188 | } | 188 | } |
189 | 189 | ||
190 | static struct file_operations count_fops = { | 190 | static const struct file_operations count_fops = { |
191 | .read = sh7750_read_count, | 191 | .read = sh7750_read_count, |
192 | .write = sh7750_write_count, | 192 | .write = sh7750_write_count, |
193 | }; | 193 | }; |