diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-04 19:09:41 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-09 14:16:20 -0400 |
commit | 75ef9de1267ba171ecefafca35758e2be0db10dc (patch) | |
tree | 597b9e9680535d3ac6c4c50c065090560414a070 /drivers/scsi/qla2xxx | |
parent | c10c062cadf527c3e072f01280d266fbbc592f9d (diff) |
constify a bunch of struct file_operations instances
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 2c6dd3dfe0f4..ccb5e6404d09 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -5351,7 +5351,7 @@ static struct pci_driver qla2xxx_pci_driver = { | |||
5351 | .err_handler = &qla2xxx_err_handler, | 5351 | .err_handler = &qla2xxx_err_handler, |
5352 | }; | 5352 | }; |
5353 | 5353 | ||
5354 | static struct file_operations apidev_fops = { | 5354 | static const struct file_operations apidev_fops = { |
5355 | .owner = THIS_MODULE, | 5355 | .owner = THIS_MODULE, |
5356 | .llseek = noop_llseek, | 5356 | .llseek = noop_llseek, |
5357 | }; | 5357 | }; |