diff options
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide-proc.c | 2 | ||||
-rw-r--r-- | drivers/ide/ide-tape.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/ide-proc.c b/drivers/ide/ide-proc.c index ad49bd823ebd..30a5780f4185 100644 --- a/drivers/ide/ide-proc.c +++ b/drivers/ide/ide-proc.c | |||
@@ -548,7 +548,7 @@ static int ide_drivers_open(struct inode *inode, struct file *file) | |||
548 | return single_open(file, &ide_drivers_show, NULL); | 548 | return single_open(file, &ide_drivers_show, NULL); |
549 | } | 549 | } |
550 | 550 | ||
551 | static struct file_operations ide_drivers_operations = { | 551 | static const struct file_operations ide_drivers_operations = { |
552 | .open = ide_drivers_open, | 552 | .open = ide_drivers_open, |
553 | .read = seq_read, | 553 | .read = seq_read, |
554 | .llseek = seq_lseek, | 554 | .llseek = seq_lseek, |
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c index b3bcd1d7315e..c6eec0413a6c 100644 --- a/drivers/ide/ide-tape.c +++ b/drivers/ide/ide-tape.c | |||
@@ -4779,7 +4779,7 @@ static ide_driver_t idetape_driver = { | |||
4779 | /* | 4779 | /* |
4780 | * Our character device supporting functions, passed to register_chrdev. | 4780 | * Our character device supporting functions, passed to register_chrdev. |
4781 | */ | 4781 | */ |
4782 | static struct file_operations idetape_fops = { | 4782 | static const struct file_operations idetape_fops = { |
4783 | .owner = THIS_MODULE, | 4783 | .owner = THIS_MODULE, |
4784 | .read = idetape_chrdev_read, | 4784 | .read = idetape_chrdev_read, |
4785 | .write = idetape_chrdev_write, | 4785 | .write = idetape_chrdev_write, |