diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2015-11-28 18:58:15 +0300 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-11-29 10:50:58 +0300 |
commit | d6b56b0bc68ba7927b286da86eda1d4d4dbe63f6 (patch) | |
tree | 1540651bb933b3b8bc5a4daa410e748aa6ec9654 /arch/x86/include/asm/calgary.h | |
parent | 7a9c2dd08eadd5c6943115dbbec040c38d2e0822 (diff) | |
download | linux-d6b56b0bc68ba7927b286da86eda1d4d4dbe63f6.tar.xz |
x86/platform/calgary: Constify cal_chipset_ops structures
The cal_chipset_ops structures are never modified, so declare
them as const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: Borislav Petkov <bp@alien8.de>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jon D. Mason <jdmason@kudzu.us>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Muli Ben-Yehuda <muli@il.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1448726295-10959-1-git-send-email-Julia.Lawall@lip6.fr
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/include/asm/calgary.h')
-rw-r--r-- | arch/x86/include/asm/calgary.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/calgary.h b/arch/x86/include/asm/calgary.h index 0d467b338835..a8303ebe089f 100644 --- a/arch/x86/include/asm/calgary.h +++ b/arch/x86/include/asm/calgary.h @@ -31,7 +31,7 @@ #include <asm/types.h> struct iommu_table { - struct cal_chipset_ops *chip_ops; /* chipset specific funcs */ + const struct cal_chipset_ops *chip_ops; /* chipset specific funcs */ unsigned long it_base; /* mapped address of tce table */ unsigned long it_hint; /* Hint for next alloc */ unsigned long *it_map; /* A simple allocation bitmap for now */ |