aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libdce.c')
-rw-r--r--libdce.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libdce.c b/libdce.c
index 4e18039..550e85a 100644
--- a/libdce.c
+++ b/libdce.c
@@ -140,11 +140,9 @@ static inline void Fill_MmRpc_fxnCtx_Scalar_Params(MmRpc_Param *mmrpc_params, in
140static inline void Fill_MmRpc_fxnCtx_Xlt_Array(MmRpc_Xlt *mmrpc_xlt, int index, int32_t base, int32_t addr, void *handle) 140static inline void Fill_MmRpc_fxnCtx_Xlt_Array(MmRpc_Xlt *mmrpc_xlt, int index, int32_t base, int32_t addr, void *handle)
141{ 141{
142 /* index : index of params filled in FxnCtx */ 142 /* index : index of params filled in FxnCtx */
143 /* base : user Virtual Address as per definition in MmRpc and not base from where offset is calculated */
144 /* offset : calculated from address of index */ 143 /* offset : calculated from address of index */
145 mmrpc_xlt->index = index; 144 mmrpc_xlt->index = index;
146 mmrpc_xlt->offset = MmRpc_OFFSET(base, addr); 145 mmrpc_xlt->offset = MmRpc_OFFSET(base, addr);
147 mmrpc_xlt->base = *(size_t *)addr; //*((void *)addr);
148 mmrpc_xlt->handle = (size_t)handle; 146 mmrpc_xlt->handle = (size_t)handle;
149} 147}
150 148