mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-07-23 07:01:03 -04:00
fw: Return reset() return value in TK1_SYSCALL_RESET
This commit is contained in:
parent
9a3b4b9dca
commit
a2b77ec348
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ int32_t syscall_handler(uint32_t number, uint32_t arg1, uint32_t arg2,
|
||||||
{
|
{
|
||||||
switch (number) {
|
switch (number) {
|
||||||
case TK1_SYSCALL_RESET:
|
case TK1_SYSCALL_RESET:
|
||||||
reset((struct reset *)arg1, (size_t)arg2);
|
return reset((struct reset *)arg1, (size_t)arg2);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TK1_SYSCALL_ALLOC_AREA:
|
case TK1_SYSCALL_ALLOC_AREA:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue