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

View File

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