summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Chan <benchan@chromium.org>2014-02-19 22:32:05 -0800
committerAleksander Morgado <aleksander@aleksander.es>2014-02-20 10:23:36 +0100
commit1866aad9d3a628572fb8c22e5a7ae1ad1c7ad9d2 (patch)
treea9893f0cbce6b76d5d905e2930700cbff6a7982e
parentacc7b4b8b91cb5428cf2dcd16328febaeece680b (diff)
bearer: remove unnecessary MM_BEARER() casts
-rw-r--r--src/mm-bearer.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mm-bearer.c b/src/mm-bearer.c
index 6592619b..86b5a6b0 100644
--- a/src/mm-bearer.c
+++ b/src/mm-bearer.c
@@ -200,7 +200,7 @@ deferred_3gpp_unregistration_cb (MMBearer *self)
self->priv->deferred_3gpp_unregistration_id = 0;
mm_dbg ("Forcing bearer disconnection, not registered in 3GPP network");
- mm_bearer_disconnect_force (MM_BEARER (self));
+ mm_bearer_disconnect_force (self);
return FALSE;
}
@@ -226,7 +226,7 @@ modem_3gpp_registration_state_changed (MMIfaceModem3gpp *modem,
self->priv->reason_3gpp = CONNECTION_FORBIDDEN_REASON_NONE;
break;
case MM_MODEM_3GPP_REGISTRATION_STATE_ROAMING:
- if (mm_bearer_properties_get_allow_roaming (mm_bearer_peek_config (MM_BEARER (self))))
+ if (mm_bearer_properties_get_allow_roaming (mm_bearer_peek_config (self)))
self->priv->reason_3gpp = CONNECTION_FORBIDDEN_REASON_NONE;
else
self->priv->reason_3gpp = CONNECTION_FORBIDDEN_REASON_ROAMING;
@@ -246,7 +246,7 @@ modem_3gpp_registration_state_changed (MMIfaceModem3gpp *modem,
if (self->priv->reason_3gpp == CONNECTION_FORBIDDEN_REASON_ROAMING) {
mm_dbg ("Bearer not allowed to connect, registered in roaming 3GPP network");
reset_deferred_unregistration (self);
- mm_bearer_disconnect_force (MM_BEARER (self));
+ mm_bearer_disconnect_force (self);
return;
}
@@ -259,7 +259,7 @@ modem_3gpp_registration_state_changed (MMIfaceModem3gpp *modem,
/* If the bearer is not connected, report right away */
if (self->priv->status != MM_BEARER_STATUS_CONNECTED) {
mm_dbg ("Bearer not allowed to connect, not registered in 3GPP network");
- mm_bearer_disconnect_force (MM_BEARER (self));
+ mm_bearer_disconnect_force (self);
return;
}
@@ -282,7 +282,7 @@ deferred_cdma_unregistration_cb (MMBearer *self)
self->priv->deferred_cdma_unregistration_id = 0;
mm_dbg ("Forcing bearer disconnection, not registered in CDMA network");
- mm_bearer_disconnect_force (MM_BEARER (self));
+ mm_bearer_disconnect_force (self);
return FALSE;
}
@@ -301,7 +301,7 @@ modem_cdma_registration_state_changed (MMIfaceModemCdma *modem,
if (cdma1x_state == MM_MODEM_CDMA_REGISTRATION_STATE_ROAMING ||
evdo_state == MM_MODEM_CDMA_REGISTRATION_STATE_ROAMING) {
- if (mm_bearer_properties_get_allow_roaming (mm_bearer_peek_config (MM_BEARER (self))))
+ if (mm_bearer_properties_get_allow_roaming (mm_bearer_peek_config (self)))
self->priv->reason_cdma = CONNECTION_FORBIDDEN_REASON_NONE;
else
self->priv->reason_cdma = CONNECTION_FORBIDDEN_REASON_ROAMING;
@@ -325,7 +325,7 @@ modem_cdma_registration_state_changed (MMIfaceModemCdma *modem,
if (self->priv->reason_cdma == CONNECTION_FORBIDDEN_REASON_ROAMING) {
mm_dbg ("Bearer not allowed to connect, registered in roaming CDMA network");
reset_deferred_unregistration (self);
- mm_bearer_disconnect_force (MM_BEARER (self));
+ mm_bearer_disconnect_force (self);
return;
}
@@ -338,7 +338,7 @@ modem_cdma_registration_state_changed (MMIfaceModemCdma *modem,
/* If the bearer is not connected, report right away */
if (self->priv->status != MM_BEARER_STATUS_CONNECTED) {
mm_dbg ("Bearer not allowed to connect, not registered in CDMA network");
- mm_bearer_disconnect_force (MM_BEARER (self));
+ mm_bearer_disconnect_force (self);
return;
}