diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-09-21 20:01:13 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-22 10:17:25 -0400 |
commit | 83d5cde47dedf01b6a4a4331882cbc0a7eea3c2e (patch) | |
tree | f8ba5e263717d35cd444fcc65898d2ed352af1ae /drivers/ide/ide-gd.c | |
parent | 7b021967c5e1463936042c8da72b550d3cabe9ac (diff) |
const: make block_device_operations const
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/ide/ide-gd.c')
-rw-r--r-- | drivers/ide/ide-gd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/ide-gd.c b/drivers/ide/ide-gd.c index 214119026b3f..753241429c26 100644 --- a/drivers/ide/ide-gd.c +++ b/drivers/ide/ide-gd.c | |||
@@ -321,7 +321,7 @@ static int ide_gd_ioctl(struct block_device *bdev, fmode_t mode, | |||
321 | return drive->disk_ops->ioctl(drive, bdev, mode, cmd, arg); | 321 | return drive->disk_ops->ioctl(drive, bdev, mode, cmd, arg); |
322 | } | 322 | } |
323 | 323 | ||
324 | static struct block_device_operations ide_gd_ops = { | 324 | static const struct block_device_operations ide_gd_ops = { |
325 | .owner = THIS_MODULE, | 325 | .owner = THIS_MODULE, |
326 | .open = ide_gd_open, | 326 | .open = ide_gd_open, |
327 | .release = ide_gd_release, | 327 | .release = ide_gd_release, |