diff options
Diffstat (limited to 'src/mm-iface-modem.h')
-rw-r--r-- | src/mm-iface-modem.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/mm-iface-modem.h b/src/mm-iface-modem.h index 5a41aa2a..f14f8cba 100644 --- a/src/mm-iface-modem.h +++ b/src/mm-iface-modem.h @@ -217,14 +217,14 @@ struct _MMIfaceModem { GAsyncResult *res, GError **error); - /* Asynchronous allowed band setting operation */ - void (*set_bands) (MMIfaceModem *self, - GArray *bands_array, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (*set_bands_finish) (MMIfaceModem *self, - GAsyncResult *res, - GError **error); + /* Asynchronous current band setting operation */ + void (*set_current_bands) (MMIfaceModem *self, + GArray *bands_array, + GAsyncReadyCallback callback, + gpointer user_data); + gboolean (*set_current_bands_finish) (MMIfaceModem *self, + GAsyncResult *res, + GError **error); /* Asynchronous allowed mode setting operation */ void (*set_allowed_modes) (MMIfaceModem *self, @@ -428,13 +428,13 @@ gboolean mm_iface_modem_set_allowed_modes_finish (MMIfaceModem *self, GError **error); /* Allow setting bands */ -void mm_iface_modem_set_bands (MMIfaceModem *self, - GArray *bands_array, - GAsyncReadyCallback callback, - gpointer user_data); -gboolean mm_iface_modem_set_bands_finish (MMIfaceModem *self, - GAsyncResult *res, - GError **error); +void mm_iface_modem_set_current_bands (MMIfaceModem *self, + GArray *bands_array, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean mm_iface_modem_set_current_bands_finish (MMIfaceModem *self, + GAsyncResult *res, + GError **error); /* Allow creating bearers */ void mm_iface_modem_create_bearer (MMIfaceModem *self, |