lynxis lazus has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ccid-firmware/+/42544?usp=email )
Change subject: firmware: fix timers, add missing return ......................................................................
firmware: fix timers, add missing return
Change-Id: I5b12284c88d8fe6e4fe55cc4cd2aad550d276af4 --- M sysmoOCTSIM/libosmo_emb.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified lynxis lazus: Looks good to me, approved
diff --git a/sysmoOCTSIM/libosmo_emb.c b/sysmoOCTSIM/libosmo_emb.c index 37f6126..e96f88e 100644 --- a/sysmoOCTSIM/libosmo_emb.c +++ b/sysmoOCTSIM/libosmo_emb.c @@ -21,7 +21,7 @@
uint64_t get_jiffies(void) { - ldrd_u64(&jiffies); + return ldrd_u64(&jiffies); }
void store_jiffies(uint64_t j)