aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/boot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/boot.c')
-rw-r--r--src/arch/x86/boot.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/src/arch/x86/boot.c b/src/arch/x86/boot.c
index b9e6ee930f..2e1becf0be 100644
--- a/src/arch/x86/boot.c
+++ b/src/arch/x86/boot.c
@@ -132,9 +132,13 @@ static void jmp_payload(void *entry, unsigned long buffer, unsigned long size)
" shrl $2, %%ecx\n\t"
" rep movsl\n\t"
- /* Adjust the stack pointer to point into the new coreboot image */
+ /* Adjust the stack pointer to point into the new coreboot
+ * image
+ */
" addl 20(%%esp), %%esp\n\t"
- /* Adjust the instruction pointer to point into the new coreboot image */
+ /* Adjust the instruction pointer to point into the new coreboot
+ * image
+ */
" movl $1f, %%eax\n\t"
" addl 20(%%esp), %%eax\n\t"
" jmp *%%eax\n\t"
@@ -166,10 +170,14 @@ static void jmp_payload(void *entry, unsigned long buffer, unsigned long size)
" shrl $2, %%ecx\n\t"
" rep movsl\n\t"
- /* Adjust the stack pointer to point into the old coreboot image */
+ /* Adjust the stack pointer to point into the old coreboot
+ * image
+ */
" subl 20(%%esp), %%esp\n\t"
- /* Adjust the instruction pointer to point into the old coreboot image */
+ /* Adjust the instruction pointer to point into the old coreboot
+ * image
+ */
" movl $1f, %%eax\n\t"
" subl 20(%%esp), %%eax\n\t"
" jmp *%%eax\n\t"