diff options
author | Helge Deller <deller@gmx.de> | 2019-05-10 14:55:08 -0400 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2019-05-10 15:00:45 -0400 |
commit | d98883690b7bc5faab98795dff694549e4c60556 (patch) | |
tree | 596084429f9cad8813255332039b741ffb68dd19 | |
parent | 7e4c65bf0637c089d8981ac7e99081a57ffbcdbc (diff) |
parisc: Use __ro_after_init in processor.c
Signed-off-by: Helge Deller <deller@gmx.de>
-rw-r--r-- | arch/parisc/kernel/processor.c | 4 |
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 | ||
46 | struct system_cpuinfo_parisc boot_cpu_data __read_mostly; | 46 | struct system_cpuinfo_parisc boot_cpu_data __ro_after_init; |
47 | EXPORT_SYMBOL(boot_cpu_data); | 47 | EXPORT_SYMBOL(boot_cpu_data); |
48 | #ifdef CONFIG_PA8X00 | 48 | #ifdef CONFIG_PA8X00 |
49 | int _parisc_requires_coherency __read_mostly; | 49 | int _parisc_requires_coherency __ro_after_init; |
50 | EXPORT_SYMBOL(_parisc_requires_coherency); | 50 | EXPORT_SYMBOL(_parisc_requires_coherency); |
51 | #endif | 51 | #endif |
52 | 52 | ||