nrf: Remove useless returns
This commit is contained in:
parent
580ab48451
commit
7f2f701c87
2 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ impl<'d, T: Instance> Qdec<'d, T> {
|
|||
poll_fn(|cx| {
|
||||
T::state().waker.register(cx.waker());
|
||||
if t.events_reportrdy.read().bits() == 0 {
|
||||
return Poll::Pending;
|
||||
Poll::Pending
|
||||
} else {
|
||||
t.events_reportrdy.reset();
|
||||
let acc = t.accread.read().bits();
|
||||
|
|
|
@ -83,7 +83,7 @@ impl<'d> Temp<'d> {
|
|||
let value = poll_fn(|cx| {
|
||||
WAKER.register(cx.waker());
|
||||
if t.events_datardy.read().bits() == 0 {
|
||||
return Poll::Pending;
|
||||
Poll::Pending
|
||||
} else {
|
||||
t.events_datardy.reset();
|
||||
let raw = t.temp.read().bits();
|
||||
|
|
Loading…
Reference in a new issue