From 43772b2dc20ce52897c56d0719568a5da0d55f01 Mon Sep 17 00:00:00 2001 From: Adrian Danis Date: Mon, 11 Jan 2016 15:27:01 +1100 Subject: [PATCH] x86: Rename decodeIA32PortOperation->decodeX86PortOperation --- include/arch/x86/arch/object/ioport.h | 2 +- src/arch/x86/object/ioport.c | 2 +- src/arch/x86/object/objecttype.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/arch/x86/arch/object/ioport.h b/include/arch/x86/arch/object/ioport.h index 109f9386f..2af78813c 100644 --- a/include/arch/x86/arch/object/ioport.h +++ b/include/arch/x86/arch/object/ioport.h @@ -17,6 +17,6 @@ #define NUM_IO_PORTS BIT(16) -exception_t decodeIA32PortInvocation(word_t invLabel, word_t length, cptr_t cptr, cte_t *slot, cap_t cap, extra_caps_t excaps, word_t* buffer); +exception_t decodeX86PortInvocation(word_t invLabel, word_t length, cptr_t cptr, cte_t *slot, cap_t cap, extra_caps_t excaps, word_t* buffer); #endif diff --git a/src/arch/x86/object/ioport.c b/src/arch/x86/object/ioport.c index 0dfbdc549..437bf8f8c 100644 --- a/src/arch/x86/object/ioport.c +++ b/src/arch/x86/object/ioport.c @@ -37,7 +37,7 @@ ensurePortOperationAllowed(cap_t cap, uint32_t start_port, uint32_t size) } exception_t -decodeIA32PortInvocation( +decodeX86PortInvocation( word_t invLabel, word_t length, cptr_t cptr, diff --git a/src/arch/x86/object/objecttype.c b/src/arch/x86/object/objecttype.c index 350981200..ef6ecd726 100644 --- a/src/arch/x86/object/objecttype.c +++ b/src/arch/x86/object/objecttype.c @@ -447,7 +447,7 @@ Arch_decodeInvocation( case cap_asid_pool_cap: return decodeX86MMUInvocation(invLabel, length, cptr, slot, cap, excaps, buffer); case cap_io_port_cap: - return decodeIA32PortInvocation(invLabel, length, cptr, slot, cap, excaps, buffer); + return decodeX86PortInvocation(invLabel, length, cptr, slot, cap, excaps, buffer); case cap_io_space_cap: return decodeX86IOSpaceInvocation(invLabel, cap); case cap_io_page_table_cap: