aboutsummaryrefslogtreecommitdiff
path: root/plugins/simtech/mm-broadband-modem-simtech.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2013-11-20 15:41:33 +0100
committerAleksander Morgado <aleksander@aleksander.es>2014-02-13 13:40:01 +0100
commit6f235b9948cf1ff1d11a7a339d3d1ffc40171dcd (patch)
treeede65682bbc0684c6e07bd8293be3fa10595be9b /plugins/simtech/mm-broadband-modem-simtech.c
parent0d1602bf0f861eed0af68a51610a3a6d3e139d0b (diff)
ports: rename 'MMAtSerialPort' to 'MMPortSerialAt'
Diffstat (limited to 'plugins/simtech/mm-broadband-modem-simtech.c')
-rw-r--r--plugins/simtech/mm-broadband-modem-simtech.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/simtech/mm-broadband-modem-simtech.c b/plugins/simtech/mm-broadband-modem-simtech.c
index a75d9e4c..25594d8d 100644
--- a/plugins/simtech/mm-broadband-modem-simtech.c
+++ b/plugins/simtech/mm-broadband-modem-simtech.c
@@ -69,7 +69,7 @@ simtech_act_to_mm_act (int nsmod)
}
static void
-simtech_tech_changed (MMAtSerialPort *port,
+simtech_tech_changed (MMPortSerialAt *port,
GMatchInfo *match_info,
MMBroadbandModemSimtech *self)
{
@@ -88,7 +88,7 @@ static void
set_unsolicited_events_handlers (MMBroadbandModemSimtech *self,
gboolean enable)
{
- MMAtSerialPort *ports[2];
+ MMPortSerialAt *ports[2];
guint i;
GRegex *regex;
@@ -104,10 +104,10 @@ set_unsolicited_events_handlers (MMBroadbandModemSimtech *self,
continue;
/* Access technology related */
- mm_at_serial_port_add_unsolicited_msg_handler (
+ mm_port_serial_at_add_unsolicited_msg_handler (
ports[i],
regex,
- enable ? (MMAtSerialUnsolicitedMsgFn)simtech_tech_changed : NULL,
+ enable ? (MMPortSerialAtUnsolicitedMsgFn)simtech_tech_changed : NULL,
enable ? self : NULL,
NULL);
}