diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-02-22 00:49:08 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-02-22 00:50:32 +0000 |
commit | e2cf3138f073905d31b1e6cad3cc69c6a63c34ac (patch) | |
tree | db4a4578cdcb2b59eb86c4fcbf1114d8abdbcef8 /src/arch/x86/include/librm.h | |
parent | 4c1f2486e664e9c88164cfff917a99bfe6beed52 (diff) | |
download | ipxe-e2cf3138f073905d31b1e6cad3cc69c6a63c34ac.tar.gz |
[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.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/include/librm.h b/src/arch/x86/include/librm.h index d6214ac80..8e39e91b9 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; |