diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2018-12-09 15:20:12 +0100 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2019-01-03 18:53:52 +0000 |
commit | 3c7437d791cf4e805d989ef940aa805f9ecc3848 (patch) | |
tree | b2a03c2dcd3112481e700be2fc2b3040665980db /src/mm-iface-modem-firmware.h | |
parent | 8e342cf1204379a11bfe55941d4e722575cb364f (diff) |
iface-modem-firmware: make the interface always available
We no longer "check for support" of this interface, it will always be
available for all modem objects.
The only implementation that used this interface was the QMI one, and
only for a very small subset of devices (those supporting the "QMI DMS
List Stored Images" operation). The logic was changed so that the list
of stored images wasn't preloaded during the support check; it will
now instead be preloaded during the first call to List().
Diffstat (limited to 'src/mm-iface-modem-firmware.h')
-rw-r--r-- | src/mm-iface-modem-firmware.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mm-iface-modem-firmware.h b/src/mm-iface-modem-firmware.h index 2fbfb07c..15052bce 100644 --- a/src/mm-iface-modem-firmware.h +++ b/src/mm-iface-modem-firmware.h @@ -34,14 +34,6 @@ typedef struct _MMIfaceModemFirmware MMIfaceModemFirmware; struct _MMIfaceModemFirmware { GTypeInterface g_iface; - /* Check for Firmware support (async) */ - void (* check_support) (MMIfaceModemFirmware *self, - GAsyncReadyCallback callback, - gpointer user_data); - gboolean (* check_support_finish) (MMIfaceModemFirmware *self, - GAsyncResult *res, - GError **error); - /* Get update settings (async) */ void (* load_update_settings) (MMIfaceModemFirmware *self, GAsyncReadyCallback callback, |