summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2019-05-10 14:55:08 -0400
committerHelge Deller <deller@gmx.de>2019-05-10 15:00:45 -0400
commitd98883690b7bc5faab98795dff694549e4c60556 (patch)
tree596084429f9cad8813255332039b741ffb68dd19
parent7e4c65bf0637c089d8981ac7e99081a57ffbcdbc (diff)
parisc: Use __ro_after_init in processor.c
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r--arch/parisc/kernel/processor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/parisc/kernel/processor.c b/arch/parisc/kernel/processor.c
index e0a81dedc366..e715871cd4ac 100644
--- a/arch/parisc/kernel/processor.c
+++ b/arch/parisc/kernel/processor.c
@@ -43,10 +43,10 @@
43#include <asm/irq.h> /* for struct irq_region */ 43#include <asm/irq.h> /* for struct irq_region */
44#include <asm/parisc-device.h> 44#include <asm/parisc-device.h>
45 45
46struct system_cpuinfo_parisc boot_cpu_data __read_mostly; 46struct system_cpuinfo_parisc boot_cpu_data __ro_after_init;
47EXPORT_SYMBOL(boot_cpu_data); 47EXPORT_SYMBOL(boot_cpu_data);
48#ifdef CONFIG_PA8X00 48#ifdef CONFIG_PA8X00
49int _parisc_requires_coherency __read_mostly; 49int _parisc_requires_coherency __ro_after_init;
50EXPORT_SYMBOL(_parisc_requires_coherency); 50EXPORT_SYMBOL(_parisc_requires_coherency);
51#endif 51#endif
52 52