continue;
 
                spin_lock_bh(&tmp_neigh_node->lq_update_lock);
-               ring_buffer_set(tmp_neigh_node->tq_recv,
-                               &tmp_neigh_node->tq_index, 0);
+               batadv_ring_buffer_set(tmp_neigh_node->tq_recv,
+                                      &tmp_neigh_node->tq_index, 0);
                tmp_neigh_node->tq_avg =
-                       ring_buffer_avg(tmp_neigh_node->tq_recv);
+                       batadv_ring_buffer_avg(tmp_neigh_node->tq_recv);
                spin_unlock_bh(&tmp_neigh_node->lq_update_lock);
        }
 
        neigh_node->last_seen = jiffies;
 
        spin_lock_bh(&neigh_node->lq_update_lock);
-       ring_buffer_set(neigh_node->tq_recv,
-                       &neigh_node->tq_index,
-                       batman_ogm_packet->tq);
-       neigh_node->tq_avg = ring_buffer_avg(neigh_node->tq_recv);
+       batadv_ring_buffer_set(neigh_node->tq_recv,
+                              &neigh_node->tq_index,
+                              batman_ogm_packet->tq);
+       neigh_node->tq_avg = batadv_ring_buffer_avg(neigh_node->tq_recv);
        spin_unlock_bh(&neigh_node->lq_update_lock);
 
        if (!is_duplicate) {
 
 #include "main.h"
 #include "ring_buffer.h"
 
-void ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index, uint8_t value)
+void batadv_ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index,
+                           uint8_t value)
 {
        lq_recv[*lq_index] = value;
        *lq_index = (*lq_index + 1) % TQ_GLOBAL_WINDOW_SIZE;
 }
 
-uint8_t ring_buffer_avg(const uint8_t lq_recv[])
+uint8_t batadv_ring_buffer_avg(const uint8_t lq_recv[])
 {
        const uint8_t *ptr;
        uint16_t count = 0, i = 0, sum = 0;
 
 #ifndef _NET_BATMAN_ADV_RING_BUFFER_H_
 #define _NET_BATMAN_ADV_RING_BUFFER_H_
 
-void ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index, uint8_t value);
-uint8_t ring_buffer_avg(const uint8_t lq_recv[]);
+void batadv_ring_buffer_set(uint8_t lq_recv[], uint8_t *lq_index,
+                           uint8_t value);
+uint8_t batadv_ring_buffer_avg(const uint8_t lq_recv[]);
 
 #endif /* _NET_BATMAN_ADV_RING_BUFFER_H_ */