Commit 04c12231 authored by bipin.ravi's avatar bipin.ravi Committed by TrustedFirmware Code Review
Browse files

Merge "services: TRNG: Fix -O0 compilation" into integration

parents 925477ec 323b6c63
...@@ -142,10 +142,12 @@ static uintptr_t std_svc_smc_handler(uint32_t smc_fid, ...@@ -142,10 +142,12 @@ static uintptr_t std_svc_smc_handler(uint32_t smc_fid,
} }
#endif #endif
#if TRNG_SUPPORT
if (is_trng_fid(smc_fid)) { if (is_trng_fid(smc_fid)) {
return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
flags); flags);
} }
#endif
switch (smc_fid) { switch (smc_fid) {
case ARM_STD_SVC_CALL_COUNT: case ARM_STD_SVC_CALL_COUNT:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment