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/block/z2ram.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/block/z2ram.c')
-rw-r--r-- | drivers/block/z2ram.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/block/z2ram.c b/drivers/block/z2ram.c index b2590409f25e..64f941e0f14b 100644 --- a/drivers/block/z2ram.c +++ b/drivers/block/z2ram.c | |||
@@ -64,7 +64,6 @@ static int current_device = -1; | |||
64 | 64 | ||
65 | static DEFINE_SPINLOCK(z2ram_lock); | 65 | static DEFINE_SPINLOCK(z2ram_lock); |
66 | 66 | ||
67 | static struct block_device_operations z2_fops; | ||
68 | static struct gendisk *z2ram_gendisk; | 67 | static struct gendisk *z2ram_gendisk; |
69 | 68 | ||
70 | static void do_z2_request(struct request_queue *q) | 69 | static void do_z2_request(struct request_queue *q) |
@@ -315,7 +314,7 @@ z2_release(struct gendisk *disk, fmode_t mode) | |||
315 | return 0; | 314 | return 0; |
316 | } | 315 | } |
317 | 316 | ||
318 | static struct block_device_operations z2_fops = | 317 | static const struct block_device_operations z2_fops = |
319 | { | 318 | { |
320 | .owner = THIS_MODULE, | 319 | .owner = THIS_MODULE, |
321 | .open = z2_open, | 320 | .open = z2_open, |