i8sak: Fixes bug where daemon was being requested again when operation is finished, instead of being released.

This commit is contained in:
Anthony Merlino 2021-04-10 11:48:23 -04:00 committed by Xiang Xiao
parent 864a61a431
commit 98c1223746
2 changed files with 2 additions and 2 deletions

View File

@ -281,5 +281,5 @@ static void scan_eventcb(FAR struct ieee802154_primitive_s *primitive,
}
}
i8sak_requestdaemon(i8sak);
i8sak_releasedaemon(i8sak);
}

View File

@ -301,5 +301,5 @@ static void tx_eventcb(FAR struct ieee802154_primitive_s *primitive,
sem_post(&i8sak->sigsem);
i8sak_requestdaemon(i8sak);
i8sak_releasedaemon(i8sak);
}