dect
/
linux-2.6
Archived
13
0
Fork 0

block: constify function pointer tables

Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
Jan Engelhardt 2008-01-29 20:57:51 +01:00 committed by Jens Axboe
parent e7d9dc9cfd
commit 12f32bb317
1 changed files with 2 additions and 2 deletions

View File

@ -337,7 +337,7 @@ static int show_partition(struct seq_file *part, void *v)
return 0;
}
struct seq_operations partitions_op = {
const struct seq_operations partitions_op = {
.start = part_start,
.next = part_next,
.stop = part_stop,
@ -595,7 +595,7 @@ static int diskstats_show(struct seq_file *s, void *v)
return 0;
}
struct seq_operations diskstats_op = {
const struct seq_operations diskstats_op = {
.start = diskstats_start,
.next = diskstats_next,
.stop = diskstats_stop,