aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-08-21 10:49:19 +0200
committerMartin Roth <martinroth@google.com>2016-08-23 15:43:14 +0200
commitccf78f083cd2811c401db08b002b2b3c5273db26 (patch)
tree176104cfdc8506bd13499eedfdb0a3fc80d87526 /src
parent7378d925a3bb374f549b51e8d21ec2de059e1cd5 (diff)
src/include: Capitalize APIC and SMM
Change-Id: I9b3a2cce6c6bb85791d5cde076d5de95ef0e8790 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16278 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker
Diffstat (limited to 'src')
-rw-r--r--src/include/cpu/x86/lapic.h2
-rw-r--r--src/include/cpu/x86/smm.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/cpu/x86/lapic.h b/src/include/cpu/x86/lapic.h
index 16bc42db7f..dfcb4da032 100644
--- a/src/include/cpu/x86/lapic.h
+++ b/src/include/cpu/x86/lapic.h
@@ -6,7 +6,7 @@
#include <halt.h>
#include <smp/node.h>
-/* See if I need to initialize the local apic */
+/* See if I need to initialize the local APIC */
#if CONFIG_SMP || CONFIG_IOAPIC
# define NEED_LAPIC 1
#else
diff --git a/src/include/cpu/x86/smm.h b/src/include/cpu/x86/smm.h
index c1051ad6ab..8ea66bae7b 100644
--- a/src/include/cpu/x86/smm.h
+++ b/src/include/cpu/x86/smm.h
@@ -528,7 +528,7 @@ void *smm_get_save_state(int cpu);
* - per_cpu_stack_size - stack size per CPU for smm modules.
* - num_concurrent_stacks - number of concurrent cpus in handler needing stack
* optional for setting up relocation handler.
- * - per_cpu_save_state_size - the smm save state size per cpu
+ * - per_cpu_save_state_size - the SMM save state size per cpu
* - num_concurrent_save_states - number of concurrent cpus needing save state
* space
* - handler - optional handler to call. Only used during SMM relocation setup.
@@ -537,8 +537,8 @@ void *smm_get_save_state(int cpu);
* the address of the module's parameters (if present).
* - runtime - this field is a result only. The SMM runtime location is filled
* into this field so the code doing the loading can manipulate the
- * runtime's assumptions. e.g. updating the apic id to CPU map to
- * handle sparse apic id space.
+ * runtime's assumptions. e.g. updating the APIC id to CPU map to
+ * handle sparse APIC id space.
*/
struct smm_loader_params {
void *stack_top;