Merge pull request #9802 from orenc17/patch-2

Fix psa_system_reset() on PSA IPC platform
pull/9666/head
Cruz Monrreal 2019-02-21 17:31:11 -06:00 committed by GitHub
commit 497d0d65c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ psa_status_t mbed_psa_reboot_and_request_new_security_state(uint32_t new_state)
MBED_NORETURN void psa_system_reset(void)
{
psa_handle_t conn = psa_connect(PSA_PLATFORM_LC_SET, 1);
psa_handle_t conn = psa_connect(PSA_PLATFORM_SYSTEM_RESET, 1);
if (conn <= PSA_NULL_HANDLE) {
return;
}