diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-22 20:41:37 +0100 |
---|---|---|
committer | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2008-01-25 08:31:43 +0100 |
commit | f6135d12db4bed3b992052020f1c50d749cd8dc6 (patch) | |
tree | ef309fcd6354aee15710b8c4d9a569ce397da97a /arch/avr32/mm | |
parent | 00625723428c23748668ca225e199a2c674c63f7 (diff) |
[AVR32] constify function pointer tables
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'arch/avr32/mm')
-rw-r--r-- | arch/avr32/mm/tlb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/mm/tlb.c b/arch/avr32/mm/tlb.c index 56672018e42f..b835257a8fa3 100644 --- a/arch/avr32/mm/tlb.c +++ b/arch/avr32/mm/tlb.c @@ -348,7 +348,7 @@ static int tlb_show(struct seq_file *tlb, void *v) return 0; } -static struct seq_operations tlb_ops = { +static const struct seq_operations tlb_ops = { .start = tlb_start, .next = tlb_next, .stop = tlb_stop, |