import gsm0502_calc_paging_group() from openbsc
[osmocom-bb.git] / src / gsm / rxlev_stat.c
index b474aaa..d226861 100644 (file)
 #include <errno.h>
 #include <stdint.h>
 
-#include <osmocore/bitvec.h>
-#include <osmocore/rxlev_stat.h>
-
-int bitvec_find_bit_pos(const struct bitvec *bv, unsigned int n, enum bit_value val)
-{
-       unsigned int i;
-
-       for (i = n; i < bv->data_len*8; i++) {
-               if (bitvec_get_bit_pos(bv, i) == val)
-                       return i;
-       }
-
-       return -1;
-}
+#include <osmocom/core/bitvec.h>
+#include <osmocom/gsm/rxlev_stat.h>
 
 void rxlev_stat_input(struct rxlev_stats *st, uint16_t arfcn, uint8_t rxlev)
 {