x86/asm: Make more symbols local
[linux-2.6-block.git] / arch / x86 / boot / pmjump.S
index c22f9a7d1aeb992e9a9057b5f881e44e92a1e96e..ea88d52eeac70489b05dff97ac2016bc87034725 100644 (file)
@@ -40,13 +40,13 @@ GLOBAL(protected_mode_jump)
 
        # Transition to 32-bit mode
        .byte   0x66, 0xea              # ljmpl opcode
-2:     .long   in_pm32                 # offset
+2:     .long   .Lin_pm32               # offset
        .word   __BOOT_CS               # segment
 ENDPROC(protected_mode_jump)
 
        .code32
        .section ".text32","ax"
-GLOBAL(in_pm32)
+.Lin_pm32:
        # Set up data segments for flat 32-bit mode
        movl    %ecx, %ds
        movl    %ecx, %es
@@ -72,4 +72,4 @@ GLOBAL(in_pm32)
        lldt    %cx
 
        jmpl    *%eax                   # Jump to the 32-bit entrypoint
-ENDPROC(in_pm32)
+ENDPROC(.Lin_pm32)