From 0a88426a6aecfa8c18329b565f650365d73ee72c Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sun, 6 Mar 2022 14:00:40 -0500 Subject: [PATCH] svc: ret for svcCallSecureMonitor is void. --- nx/include/switch/kernel/svc.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nx/include/switch/kernel/svc.h b/nx/include/switch/kernel/svc.h index 289e3171..e3497f8d 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -1561,10 +1561,9 @@ Result svcSetResourceLimitLimitValue(Handle reslimit, LimitableResource which, u /** * @brief Calls a secure monitor function (TrustZone, EL3). * @param regs Arguments to pass to the secure monitor. - * @return Return value from the secure monitor. * @note Syscall number 0x7F. * @warning This is a privileged syscall. Use \ref envIsSyscallHinted to check if it is available. */ -u64 svcCallSecureMonitor(SecmonArgs* regs); +void svcCallSecureMonitor(SecmonArgs* regs); ///@}