aboutsummaryrefslogtreecommitdiffstats
path: root/block/genhd.c
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@computergmbh.de>2008-01-29 14:57:51 -0500
committerJens Axboe <jens.axboe@oracle.com>2008-01-29 15:55:19 -0500
commit12f32bb31772e72d8cf52a29f961561bccc54c37 (patch)
tree461dc5d9008e4799fe78eed4d2c0d29096a60345 /block/genhd.c
parente7d9dc9cfd9bcc9ca688fe7f94c0da7d0700bfe6 (diff)
block: constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/genhd.c')
-rw-r--r--block/genhd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/genhd.c b/block/genhd.c
index 5e4ab4b37d9f..de2ebb2fab43 100644
--- a/block/genhd.c
+++ b/block/genhd.c
@@ -337,7 +337,7 @@ static int show_partition(struct seq_file *part, void *v)
337 return 0; 337 return 0;
338} 338}
339 339
340struct seq_operations partitions_op = { 340const struct seq_operations partitions_op = {
341 .start = part_start, 341 .start = part_start,
342 .next = part_next, 342 .next = part_next,
343 .stop = part_stop, 343 .stop = part_stop,
@@ -595,7 +595,7 @@ static int diskstats_show(struct seq_file *s, void *v)
595 return 0; 595 return 0;
596} 596}
597 597
598struct seq_operations diskstats_op = { 598const struct seq_operations diskstats_op = {
599 .start = diskstats_start, 599 .start = diskstats_start,
600 .next = diskstats_next, 600 .next = diskstats_next,
601 .stop = diskstats_stop, 601 .stop = diskstats_stop,