constify a bunch of struct file_operations instances

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro
2013-04-04 19:09:41 -04:00
parent c10c062cad
commit 75ef9de126
13 changed files with 17 additions and 17 deletions

View File

@@ -307,7 +307,7 @@ static void ir_lirc_close(void *data)
return;
}
static struct file_operations lirc_fops = {
static const struct file_operations lirc_fops = {
.owner = THIS_MODULE,
.write = ir_lirc_transmit_ir,
.unlocked_ioctl = ir_lirc_ioctl,