Skip to content

Commit

Permalink
[Fixup] core: pta: add helper functions to support calls from TA when…
Browse files Browse the repository at this point in the history
… CFG_PAN=y

Add missing "break" statements.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
  • Loading branch information
jforissier committed Aug 3, 2023
1 parent 4f2fd93 commit 08b6920
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/kernel/pseudo_ta.c
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ TEE_Result to_bounce_params(uint32_t param_types,
bparams[i].memref.size = size;
break;
default:
break;
}
switch (TEE_PARAM_TYPE_GET(param_types, i)) {
case TEE_PARAM_TYPE_MEMREF_INPUT:
Expand All @@ -373,6 +374,7 @@ TEE_Result to_bounce_params(uint32_t param_types,
bparams[i].value.b = params[i].value.b;
break;
default:
break;
}
}
*oparams = bparams;
Expand Down

0 comments on commit 08b6920

Please sign in to comment.