x86/asm/32: Change all ENTRY+ENDPROC to SYM_FUNC_*
[linux-2.6-microblaze.git] / arch / x86 / boot / compressed / head_32.S
index f9e2a80..f2dfd6d 100644 (file)
@@ -61,7 +61,7 @@
        .hidden _egot
 
        __HEAD
-ENTRY(startup_32)
+SYM_FUNC_START(startup_32)
        cld
        /*
         * Test KEEP_SEGMENTS flag to see if the bootloader is asking
@@ -142,14 +142,14 @@ ENTRY(startup_32)
  */
        leal    .Lrelocated(%ebx), %eax
        jmp     *%eax
-ENDPROC(startup_32)
+SYM_FUNC_END(startup_32)
 
 #ifdef CONFIG_EFI_STUB
 /*
  * We don't need the return address, so set up the stack so efi_main() can find
  * its arguments.
  */
-ENTRY(efi_pe_entry)
+SYM_FUNC_START(efi_pe_entry)
        add     $0x4, %esp
 
        call    1f
@@ -174,9 +174,9 @@ ENTRY(efi_pe_entry)
        pushl   %eax
        pushl   %ecx
        jmp     2f              /* Skip efi_config initialization */
-ENDPROC(efi_pe_entry)
+SYM_FUNC_END(efi_pe_entry)
 
-ENTRY(efi32_stub_entry)
+SYM_FUNC_START(efi32_stub_entry)
        add     $0x4, %esp
        popl    %ecx
        popl    %edx
@@ -205,7 +205,7 @@ fail:
        movl    BP_code32_start(%esi), %eax
        leal    startup_32(%eax), %eax
        jmp     *%eax
-ENDPROC(efi32_stub_entry)
+SYM_FUNC_END(efi32_stub_entry)
 #endif
 
        .text