diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-04-26 11:56:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-26 11:56:40 +0100 |
commit | 79199f702e54f2f30dc4726e657f319b14cf8ade (patch) | |
tree | 70505899a3a655fb4f84d687264dcc75b1fcf79a /bl1 | |
parent | b7a52a786c523fbcc84756c45feba5f1dd59e500 (diff) | |
parent | 7a317a70d4829feaeaf841584aff58162d13eb07 (diff) | |
download | arm-trusted-firmware-79199f702e54f2f30dc4726e657f319b14cf8ade.tar.gz |
Merge pull request #907 from antonio-nino-diaz-arm/an/smc-ret0
tspd:FWU:Fix usage of SMC_RET0
Diffstat (limited to 'bl1')
-rw-r--r-- | bl1/bl1_fwu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bl1/bl1_fwu.c b/bl1/bl1_fwu.c index f7fae6823..e2ede6817 100644 --- a/bl1/bl1_fwu.c +++ b/bl1/bl1_fwu.c @@ -109,7 +109,7 @@ register_t bl1_fwu_smc_handler(unsigned int smc_fid, break; } - SMC_RET0(handle); + SMC_RET1(handle, SMC_UNK); } /******************************************************************************* |