summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/include/librm.h
diff options
context:
space:
mode:
authorMichael Brown2016-02-22 01:49:08 +0100
committerMichael Brown2016-02-22 01:50:32 +0100
commite2cf3138f073905d31b1e6cad3cc69c6a63c34ac (patch)
treedb4a4578cdcb2b59eb86c4fcbf1114d8abdbcef8 /src/arch/x86/include/librm.h
parent[librm] Support userptr_t in 64-bit builds (diff)
downloadipxe-e2cf3138f073905d31b1e6cad3cc69c6a63c34ac.tar.gz
ipxe-e2cf3138f073905d31b1e6cad3cc69c6a63c34ac.tar.xz
ipxe-e2cf3138f073905d31b1e6cad3cc69c6a63c34ac.zip
[librm] Rename prot_call() to virt_call()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/arch/x86/include/librm.h')
-rw-r--r--src/arch/x86/include/librm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/include/librm.h b/src/arch/x86/include/librm.h
index d6214ac8..8e39e91b 100644
--- a/src/arch/x86/include/librm.h
+++ b/src/arch/x86/include/librm.h
@@ -58,7 +58,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
*/
.macro virtcall function
pushl $VIRTUAL(\function)
- call prot_call
+ call virt_call
.endm
#else /* ASSEMBLY */
@@ -76,7 +76,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
*/
#define VIRT_CALL( function ) \
"pushl $( " _S2 ( VIRTUAL ( function ) ) " )\n\t" \
- "call prot_call\n\t"
+ "call virt_call\n\t"
/* Variables in librm.S */
extern const unsigned long virt_offset;