diff options
Diffstat (limited to 'src/arch/x86/init')
-rw-r--r-- | src/arch/x86/init/bootblock_normal.c | 1 | ||||
-rw-r--r-- | src/arch/x86/init/bootblock_simple.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/x86/init/bootblock_normal.c b/src/arch/x86/init/bootblock_normal.c index f227e8e9dd..218d456ad3 100644 --- a/src/arch/x86/init/bootblock_normal.c +++ b/src/arch/x86/init/bootblock_normal.c @@ -49,4 +49,3 @@ static void main(unsigned long bist) /* duh. we're stuck */ asm volatile ("1:\n\thlt\n\tjmp 1b\n\t"); } - diff --git a/src/arch/x86/init/bootblock_simple.c b/src/arch/x86/init/bootblock_simple.c index 34f55cac35..179595a727 100644 --- a/src/arch/x86/init/bootblock_simple.c +++ b/src/arch/x86/init/bootblock_simple.c @@ -20,4 +20,3 @@ static void main(unsigned long bist) if (entry) call(entry, bist); asm volatile ("1:\n\thlt\n\tjmp 1b\n\t"); } - |