]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86: pmjump - use GLOBAL,ENDPROC macros
authorCyrill Gorcunov <gorcunov@gmail.com>
Fri, 13 Feb 2009 21:50:21 +0000 (00:50 +0300)
committerIngo Molnar <mingo@elte.hu>
Thu, 19 Feb 2009 16:13:00 +0000 (17:13 +0100)
Impact: cleanup

We are in setup stage so we use GLOBAL
instead of ENTRY and do not increase code
size.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/boot/pmjump.S

index 141b6e20ed3124dc102104991367de8b4779be68..019c17a7585115a7cfdb0c27696544b8127599b5 100644 (file)
 #include <asm/boot.h>
 #include <asm/processor-flags.h>
 #include <asm/segment.h>
+#include <linux/linkage.h>
 
        .text
-
-       .globl  protected_mode_jump
-       .type   protected_mode_jump, @function
-
        .code16
 
 /*
  * void protected_mode_jump(u32 entrypoint, u32 bootparams);
  */
-protected_mode_jump:
+GLOBAL(protected_mode_jump)
        movl    %edx, %esi              # Pointer to boot_params table
 
        xorl    %ebx, %ebx
@@ -47,12 +44,10 @@ protected_mode_jump:
        .byte   0x66, 0xea              # ljmpl opcode
 2:     .long   in_pm32                 # offset
        .word   __BOOT_CS               # segment
-
-       .size   protected_mode_jump, .-protected_mode_jump
+ENDPROC(protected_mode_jump)
 
        .code32
-       .type   in_pm32, @function
-in_pm32:
+GLOBAL(in_pm32)
        # Set up data segments for flat 32-bit mode
        movl    %ecx, %ds
        movl    %ecx, %es
@@ -78,5 +73,4 @@ in_pm32:
        lldt    %cx
 
        jmpl    *%eax                   # Jump to the 32-bit entrypoint
-
-       .size   in_pm32, .-in_pm32
+ENDPROC(in_pm32)