Skip to content
Snippets Groups Projects
  1. Apr 18, 2016
  2. Apr 15, 2016
  3. Apr 13, 2016
  4. Apr 08, 2016
    • Aleksander Morgado's avatar
      port-probe: make sure stored task pointer is set to NULL before completing · 276e28fe
      Aleksander Morgado authored
      When we were completing tasks in idle, the logic was like this:
      
       * Schedule task completion in idle
       * self->priv->task = NULL
       * (idle) Task completion callback called
      
      This meant that the self->priv->task was always set to NULL before the
      completion callback was called, which is what we wanted as a new task may be
      scheduled in the callback itself.
      
      Now, without completing in idle, we were wrongly doing:
      
       * Task completion callback called
       * self->priv->task = NULL
      
      This commit fixes the logic by making sure self->priv->task = NULL before any
      task completion.
      276e28fe
  5. Apr 06, 2016
    • Carlo Lobrano's avatar
      dell: fixed cgmi_retries in dell_custom_init · 8a386218
      Carlo Lobrano authored and Aleksander Morgado's avatar Aleksander Morgado committed
      Initialized "cgmi_retries" variable from CustomInitContext with the
      same value as the other retries, moreover the context is now allocated
      with g_slice_new0.
      
      Before this changes, when cgmi_retries assumed big values during the
      probing of no AT-capable ports, the command AT+CGMI (mm-plugin-dell.c:custom_init_step)
      was sent a semi-infinite number of times, blocking the plugin's initialization.
      8a386218
  6. Apr 03, 2016
  7. Mar 27, 2016
  8. Mar 26, 2016
  9. Mar 25, 2016
    • Aleksander Morgado's avatar
    • Brian Norris's avatar
      libmm-glib: fix enum conversion warning/error · 34961f20
      Brian Norris authored and Aleksander Morgado's avatar Aleksander Morgado committed
      mm-modem-oma.c:400:51: error: implicit conversion from enumeration type 'MMOmaSessionType' to different enumeration type 'MMOmaFeature'
            [-Werror,-Wenum-conversion]
          g_return_val_if_fail (MM_IS_MODEM_OMA (self), MM_OMA_SESSION_TYPE_UNKNOWN);
          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
      /usr/include/glib-2.0/glib/gmessages.h:382:11: note: expanded from macro 'g_return_val_if_fail'
               return (val);                                                  \
               ~~~~~~  ^~~
      
      This should be MMOmaFeature, not MMOmaSessionType. The end result is the same,
      as both are 0.
      34961f20
  10. Mar 23, 2016
  11. Mar 22, 2016
  12. Mar 21, 2016
  13. Mar 18, 2016
  14. Mar 16, 2016
    • Aleksander Morgado's avatar
      libmm-glib,modem-voice: fix unknown methods in documentation · d7a643b1
      Aleksander Morgado authored
          html/MMCallProperties.html:141: warning: no link for: 'mm-modem-voice-create' -> (<code class="function">mm_modem_voice_create()</code>).
          html/MMCallProperties.html:141: warning: no link for: 'mm-modem-voice-create-sync' -> (<code class="function">mm_modem_voice_create_sync()</code>).
          html/MMModemVoice.html:379: warning: no link for: 'mm-modem-voice-delete-finish' -> (<code class="function">mm_modem_voice_delete_finish()</code>).
          html/MMModemVoice.html:380: warning: no link for: 'mm-modem-voice-delete-sync' -> (<code class="function">mm_modem_voice_delete_sync()</code>).
      d7a643b1
    • Aleksander Morgado's avatar
      libmm-glib,modem-location: fix unknown method in documentation · 4055488f
      Aleksander Morgado authored
          html/MMModemLocation.html:516: warning: no link for: 'mm-modem-dup-supl-server' -> (<code class="function">mm_modem_dup_supl_server()</code>).
      4055488f
  15. Mar 15, 2016
  16. Mar 13, 2016
Loading