sh: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
1b1e037a89
commit
773c7bd694
2 changed files with 2 additions and 2 deletions
|
@ -121,7 +121,7 @@ static int gio_ioctl(struct inode *inode, struct file *filp,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct file_operations gio_fops = {
|
static const struct file_operations gio_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.open = gio_open, /* open */
|
.open = gio_open, /* open */
|
||||||
.release = gio_close, /* release */
|
.release = gio_close, /* release */
|
||||||
|
|
|
@ -427,7 +427,7 @@ static void *c_next(struct seq_file *m, void *v, loff_t *pos)
|
||||||
static void c_stop(struct seq_file *m, void *v)
|
static void c_stop(struct seq_file *m, void *v)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
struct seq_operations cpuinfo_op = {
|
const struct seq_operations cpuinfo_op = {
|
||||||
.start = c_start,
|
.start = c_start,
|
||||||
.next = c_next,
|
.next = c_next,
|
||||||
.stop = c_stop,
|
.stop = c_stop,
|
||||||
|
|
Loading…
Reference in a new issue