rlc: Rename the simple raise_v_r method to avoid naming conflicts
diff --git a/src/rlc.h b/src/rlc.h
index d68afab..42b1ab0 100644
--- a/src/rlc.h
+++ b/src/rlc.h
@@ -94,7 +94,7 @@
 	bool is_in_window(uint8_t bsn) const;
 
 	void update_rbb(const gprs_rlc_v_n *v_n, char *rbb);
-	void raise_v_r(int moves);
+	void raise_v_r_to(int moves);
 	void raise_v_r(const uint16_t bsn, gprs_rlc_v_n *v_n);
 	uint16_t raise_v_q(gprs_rlc_v_n *v_n);
 
@@ -347,7 +347,7 @@
 	return m_v_r;
 }
 
-inline void gprs_rlc_ul_window::raise_v_r(int moves)
+inline void gprs_rlc_ul_window::raise_v_r_to(int moves)
 {
 	m_v_r = (m_v_r + moves) & mod_sns();
 }