diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2013-11-18 12:07:25 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2014-02-13 13:40:44 +0100 |
commit | a2f4fbe373de4f0cf094004b954504e510546b6e (patch) | |
tree | 9d41150466d89124d6a52ac09575da1fd297d005 /src/mm-port-serial-qcdm.c | |
parent | 5792bcc876c9e3152d0444fca938091c112d05af (diff) |
port-serial-qcdm: commands are never cached
The QCDM port commands are never cached, so remove the option from the command()
method. Will also simplify command caching afterwards as it will be an AT-only
thing.
Diffstat (limited to 'src/mm-port-serial-qcdm.c')
-rw-r--r-- | src/mm-port-serial-qcdm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mm-port-serial-qcdm.c b/src/mm-port-serial-qcdm.c index 4733f1fc..42d12d7a 100644 --- a/src/mm-port-serial-qcdm.c +++ b/src/mm-port-serial-qcdm.c @@ -160,7 +160,6 @@ void mm_port_serial_qcdm_command (MMPortSerialQcdm *self, GByteArray *command, guint32 timeout_seconds, - gboolean allow_cached, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data) @@ -179,7 +178,7 @@ mm_port_serial_qcdm_command (MMPortSerialQcdm *self, mm_port_serial_command (MM_PORT_SERIAL (self), command, timeout_seconds, - allow_cached, + FALSE, /* never cached */ cancellable, (GAsyncReadyCallback)serial_command_ready, simple); |