Skip to content

Commit

Permalink
[review] core: spmc: support FF-A 1.1
Browse files Browse the repository at this point in the history
Addressing a comment.

Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
  • Loading branch information
jenswi-linaro committed May 15, 2023
1 parent 3f083e4 commit 7623576
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/arch/arm/kernel/thread_spmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,14 +543,14 @@ void spmc_handle_partition_info_get(struct thread_smc_args *args,
}

ret_fid = FFA_SUCCESS_32;
if (!count_only)
rxtx->tx_is_mine = false;

out:
spmc_set_args(args, ret_fid, FFA_PARAM_MBZ, rc, FFA_PARAM_MBZ,
FFA_PARAM_MBZ, FFA_PARAM_MBZ);
if (!count_only)
if (!count_only) {
rxtx->tx_is_mine = false;
cpu_spin_unlock(&rxtx->spinlock);
}
}
#endif /*CFG_CORE_SEL1_SPMC*/

Expand Down

0 comments on commit 7623576

Please sign in to comment.