Use  'var &= ~(1 << x)' to reset bits instead of 'var &= (1 << x)'.

Sponsored-by: On-Waves ehf
---
 src/common/rsl.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common/rsl.c b/src/common/rsl.c
index 8b7702b..b7dc2b5 100644
--- a/src/common/rsl.c
+++ b/src/common/rsl.c
@@ -331,7 +331,7 @@ static int rsl_rx_bcch_info(struct gsm_bts_trx *trx, struct 
msgb *msg)
                LOGP(DRSL, LOGL_INFO, " Rx RSL BCCH INFO (SI%s)\n",
                        get_value_string(osmo_sitype_strs, osmo_si));
        } else {
-               bts->si_valid &= (1 << osmo_si);
+               bts->si_valid &= ~(1 << osmo_si);
                LOGP(DRSL, LOGL_INFO, " RX RSL Disabling BCCH INFO (SI%s)\n",
                        get_value_string(osmo_sitype_strs, osmo_si));
        }
@@ -445,7 +445,7 @@ static int rsl_rx_sacch_fill(struct gsm_bts_trx *trx, 
struct msgb *msg)
                LOGP(DRSL, LOGL_INFO, " Rx RSL SACCH FILLING (SI%s)\n",
                        get_value_string(osmo_sitype_strs, osmo_si));
        } else {
-               bts->si_valid &= (1 << osmo_si);
+               bts->si_valid &= ~(1 << osmo_si);
                LOGP(DRSL, LOGL_INFO, " Rx RSL Disabling SACCH FILLING 
(SI%s)\n",
                        get_value_string(osmo_sitype_strs, osmo_si));
        }
-- 
1.7.9.5


Reply via email to