neug_get() does not have any argument.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos 2022-08-18 23:54:10 +02:00
parent 7738c1902e
commit 33b33fdbba
No known key found for this signature in database
GPG key ID: C0095B7870A4CCD3

View file

@ -160,7 +160,7 @@ void neug_flush(void) {
rb_del (rb);
}
uint32_t neug_get(int kick) {
uint32_t neug_get() {
struct rng_rb *rb = &the_ring_buffer;
uint32_t v;
@ -180,6 +180,6 @@ void neug_wait_full(void) { //should be called only on core1
}
void neug_fini(void) {
neug_get(1);
neug_get();
}