diff options
author | Helge Deller | 2019-05-10 20:55:08 +0200 |
---|---|---|
committer | Helge Deller | 2019-05-10 21:00:45 +0200 |
commit | d98883690b7bc5faab98795dff694549e4c60556 (patch) | |
tree | 596084429f9cad8813255332039b741ffb68dd19 /arch/parisc/kernel/processor.c | |
parent | 7e4c65bf0637c089d8981ac7e99081a57ffbcdbc (diff) |
parisc: Use __ro_after_init in processor.c
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/kernel/processor.c')
-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 @@ #include <asm/irq.h> /* for struct irq_region */ #include <asm/parisc-device.h> -struct system_cpuinfo_parisc boot_cpu_data __read_mostly; +struct system_cpuinfo_parisc boot_cpu_data __ro_after_init; EXPORT_SYMBOL(boot_cpu_data); #ifdef CONFIG_PA8X00 -int _parisc_requires_coherency __read_mostly; +int _parisc_requires_coherency __ro_after_init; EXPORT_SYMBOL(_parisc_requires_coherency); #endif |