summaryrefslogtreecommitdiff
path: root/arch/x86/machine/lapic.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-01-02 23:38:19 +0100
committerRichard Braun <rbraun@sceen.net>2014-01-02 23:38:19 +0100
commit8ad09341a41f54c846296a4265d0914f24e5a69b (patch)
tree46b1454b40e530c414d8ffa1466ac58ce10f6da3 /arch/x86/machine/lapic.c
parent73cb08aea72483f509d774630a63006b9338c1ad (diff)
Declare variables as read mostly where appropriate
Diffstat (limited to 'arch/x86/machine/lapic.c')
-rw-r--r--arch/x86/machine/lapic.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/machine/lapic.c b/arch/x86/machine/lapic.c
index 10d6b40..2e879a9 100644
--- a/arch/x86/machine/lapic.c
+++ b/arch/x86/machine/lapic.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011, 2012 Richard Braun.
+ * Copyright (c) 2011-2014 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -181,12 +181,12 @@ struct lapic_map {
/*
* Address where local APIC registers are mapped.
*/
-static volatile struct lapic_map *lapic_map;
+static volatile struct lapic_map *lapic_map __read_mostly;
/*
* Base frequency of the local APIC timer.
*/
-static uint32_t lapic_bus_freq;
+static uint32_t lapic_bus_freq __read_mostly;
static uint32_t
lapic_read(const volatile struct lapic_register *r)