Skip to content
Snippets Groups Projects
Commit b2898dc8 authored by schneider's avatar schneider
Browse files

fix(interrupt): make error values negative

parent b6a2a86a
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ static bool enabled[API_INT_MAX + 1];
int api_interrupt_trigger(api_int_id_t id)
{
if (id > API_INT_MAX) {
return EINVAL;
return -EINVAL;
}
if (enabled[id]) {
......@@ -32,7 +32,7 @@ void api_interrupt_init(void)
int epic_interrupt_enable(api_int_id_t int_id)
{
if (int_id > API_INT_MAX) {
return EINVAL;
return -EINVAL;
}
enabled[int_id] = true;
......@@ -42,7 +42,7 @@ int epic_interrupt_enable(api_int_id_t int_id)
int epic_interrupt_disable(api_int_id_t int_id)
{
if (int_id > API_INT_MAX) {
return EINVAL;
return -EINVAL;
}
enabled[int_id] = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment