aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/altair/mm-plugin-altair-lte.c6
-rw-r--r--plugins/nokia/mm-plugin-nokia-icera.c6
-rw-r--r--plugins/nokia/mm-plugin-nokia.c6
-rw-r--r--plugins/pantech/mm-plugin-pantech.c6
-rw-r--r--plugins/zte/mm-plugin-zte.c6
5 files changed, 15 insertions, 15 deletions
diff --git a/plugins/altair/mm-plugin-altair-lte.c b/plugins/altair/mm-plugin-altair-lte.c
index f83ce33c..7f6a7c0b 100644
--- a/plugins/altair/mm-plugin-altair-lte.c
+++ b/plugins/altair/mm-plugin-altair-lte.c
@@ -41,9 +41,9 @@ MM_PLUGIN_DEFINE_MINOR_VERSION
take longer to respond after a reset.
*/
static const MMPortProbeAtCommand custom_at_probe[] = {
- { (gchar *) "AT", 7, mm_port_probe_response_processor_is_at },
- { (gchar *) "AT", 7, mm_port_probe_response_processor_is_at },
- { (gchar *) "AT", 7, mm_port_probe_response_processor_is_at },
+ { "AT", 7, mm_port_probe_response_processor_is_at },
+ { "AT", 7, mm_port_probe_response_processor_is_at },
+ { "AT", 7, mm_port_probe_response_processor_is_at },
{ NULL }
};
diff --git a/plugins/nokia/mm-plugin-nokia-icera.c b/plugins/nokia/mm-plugin-nokia-icera.c
index 8a4ed0eb..e2d587a4 100644
--- a/plugins/nokia/mm-plugin-nokia-icera.c
+++ b/plugins/nokia/mm-plugin-nokia-icera.c
@@ -33,9 +33,9 @@ MM_PLUGIN_DEFINE_MINOR_VERSION
/* Custom commands for AT probing */
static const MMPortProbeAtCommand custom_at_probe[] = {
- { (gchar *) "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
- { (gchar *) "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
- { (gchar *) "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
+ { "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
+ { "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
+ { "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
{ NULL }
};
diff --git a/plugins/nokia/mm-plugin-nokia.c b/plugins/nokia/mm-plugin-nokia.c
index a4e05ab8..cb3374ce 100644
--- a/plugins/nokia/mm-plugin-nokia.c
+++ b/plugins/nokia/mm-plugin-nokia.c
@@ -34,9 +34,9 @@ MM_PLUGIN_DEFINE_MINOR_VERSION
/* Custom commands for AT probing */
static const MMPortProbeAtCommand custom_at_probe[] = {
- { (gchar *) "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
- { (gchar *) "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
- { (gchar *) "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
+ { "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
+ { "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
+ { "ATE1 E0", 3, mm_port_probe_response_processor_is_at },
{ NULL }
};
diff --git a/plugins/pantech/mm-plugin-pantech.c b/plugins/pantech/mm-plugin-pantech.c
index 312cb324..66eb6453 100644
--- a/plugins/pantech/mm-plugin-pantech.c
+++ b/plugins/pantech/mm-plugin-pantech.c
@@ -66,9 +66,9 @@ port_probe_response_processor_is_pantech_at (const gchar *command,
}
static const MMPortProbeAtCommand custom_at_probe[] = {
- { (gchar *) "ATE0", 3, port_probe_response_processor_is_pantech_at },
- { (gchar *) "ATE0", 3, port_probe_response_processor_is_pantech_at },
- { (gchar *) "ATE0", 3, port_probe_response_processor_is_pantech_at },
+ { "ATE0", 3, port_probe_response_processor_is_pantech_at },
+ { "ATE0", 3, port_probe_response_processor_is_pantech_at },
+ { "ATE0", 3, port_probe_response_processor_is_pantech_at },
{ NULL }
};
diff --git a/plugins/zte/mm-plugin-zte.c b/plugins/zte/mm-plugin-zte.c
index fcac8ee3..7b0849f1 100644
--- a/plugins/zte/mm-plugin-zte.c
+++ b/plugins/zte/mm-plugin-zte.c
@@ -51,9 +51,9 @@ MM_PLUGIN_DEFINE_MINOR_VERSION
* We use this command also for checking AT support in the port.
*/
static const MMPortProbeAtCommand custom_at_probe[] = {
- { (gchar *) "ATE0+CPMS?", 3, mm_port_probe_response_processor_is_at },
- { (gchar *) "ATE0+CPMS?", 3, mm_port_probe_response_processor_is_at },
- { (gchar *) "ATE0+CPMS?", 3, mm_port_probe_response_processor_is_at },
+ { "ATE0+CPMS?", 3, mm_port_probe_response_processor_is_at },
+ { "ATE0+CPMS?", 3, mm_port_probe_response_processor_is_at },
+ { "ATE0+CPMS?", 3, mm_port_probe_response_processor_is_at },
{ NULL }
};