diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/entryfuncs.S | 6 | ||||
-rw-r--r-- | src/romlayout.S | 4 |
2 files changed, 2 insertions, 8 deletions
diff --git a/src/entryfuncs.S b/src/entryfuncs.S index ea6f9900..679b1fc4 100644 --- a/src/entryfuncs.S +++ b/src/entryfuncs.S @@ -149,9 +149,3 @@ .section .text.asm.\func .global \func .endm - - // Declare an exported function - .macro EXPORTFUNC func - .section .text.asm.export.\func - .global \func - .endm diff --git a/src/romlayout.S b/src/romlayout.S index 80719630..a931b323 100644 --- a/src/romlayout.S +++ b/src/romlayout.S @@ -440,7 +440,7 @@ entry_bios32: lretl // 32bit elf entry point - EXPORTFUNC entry_elf + DECLFUNC entry_elf entry_elf: cli cld @@ -458,7 +458,7 @@ entry_elf: .code16 // UEFI Compatibility Support Module (CSM) entry point - EXPORTFUNC entry_csm + DECLFUNC entry_csm entry_csm: // Backup register state pushfw |