diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mn10300/kernel/setup.c | 2 | ||||
-rw-r--r-- | arch/powerpc/kernel/setup-common.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/pseries/hvCall_inst.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/arch/mn10300/kernel/setup.c b/arch/mn10300/kernel/setup.c index 79890edfd67a..3f24c298a3af 100644 --- a/arch/mn10300/kernel/setup.c +++ b/arch/mn10300/kernel/setup.c | |||
@@ -285,7 +285,7 @@ static void c_stop(struct seq_file *m, void *v) | |||
285 | { | 285 | { |
286 | } | 286 | } |
287 | 287 | ||
288 | struct seq_operations cpuinfo_op = { | 288 | const struct seq_operations cpuinfo_op = { |
289 | .start = c_start, | 289 | .start = c_start, |
290 | .next = c_next, | 290 | .next = c_next, |
291 | .stop = c_stop, | 291 | .stop = c_stop, |
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 02fed27af7f6..1d5570a1e456 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c | |||
@@ -328,7 +328,7 @@ static void c_stop(struct seq_file *m, void *v) | |||
328 | { | 328 | { |
329 | } | 329 | } |
330 | 330 | ||
331 | struct seq_operations cpuinfo_op = { | 331 | const struct seq_operations cpuinfo_op = { |
332 | .start =c_start, | 332 | .start =c_start, |
333 | .next = c_next, | 333 | .next = c_next, |
334 | .stop = c_stop, | 334 | .stop = c_stop, |
diff --git a/arch/powerpc/platforms/pseries/hvCall_inst.c b/arch/powerpc/platforms/pseries/hvCall_inst.c index eae51ef9af24..3631a4f277eb 100644 --- a/arch/powerpc/platforms/pseries/hvCall_inst.c +++ b/arch/powerpc/platforms/pseries/hvCall_inst.c | |||
@@ -71,7 +71,7 @@ static int hc_show(struct seq_file *m, void *p) | |||
71 | return 0; | 71 | return 0; |
72 | } | 72 | } |
73 | 73 | ||
74 | static struct seq_operations hcall_inst_seq_ops = { | 74 | static const struct seq_operations hcall_inst_seq_ops = { |
75 | .start = hc_start, | 75 | .start = hc_start, |
76 | .next = hc_next, | 76 | .next = hc_next, |
77 | .stop = hc_stop, | 77 | .stop = hc_stop, |