diff options
author | Ben Chan <benchan@chromium.org> | 2012-09-07 13:39:39 -0700 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-09-08 10:19:01 +0200 |
commit | 1252572607094cc0036dd656e6d596510ce49f39 (patch) | |
tree | ba4ae17256b1708379e71f4eb0fe60264fb7f07c | |
parent | 2ca6d6285696d09d7a0f8bad3a551e6af0dd9be1 (diff) |
novatel-lte: set default SMS storage to 'SM'
Novatel E362 LTE modem only supports 'SM' and 'SR', but not 'ME'.
-rw-r--r-- | plugins/novatel/mm-broadband-modem-novatel-lte.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/novatel/mm-broadband-modem-novatel-lte.c b/plugins/novatel/mm-broadband-modem-novatel-lte.c index 3c80e91e..96750462 100644 --- a/plugins/novatel/mm-broadband-modem-novatel-lte.c +++ b/plugins/novatel/mm-broadband-modem-novatel-lte.c @@ -29,6 +29,7 @@ #include "mm-sim-novatel-lte.h" #include "mm-errors-types.h" #include "mm-iface-modem.h" +#include "mm-iface-modem-messaging.h" #include "mm-log.h" #include "mm-modem-helpers.h" #include "mm-serial-parsers.h" @@ -407,6 +408,9 @@ mm_broadband_modem_novatel_lte_new (const gchar *device, MM_BASE_MODEM_PLUGIN, plugin, MM_BASE_MODEM_VENDOR_ID, vendor_id, MM_BASE_MODEM_PRODUCT_ID, product_id, + MM_IFACE_MODEM_MESSAGING_SMS_MEM1_STORAGE, MM_SMS_STORAGE_SM, + MM_IFACE_MODEM_MESSAGING_SMS_MEM2_STORAGE, MM_SMS_STORAGE_SM, + MM_IFACE_MODEM_MESSAGING_SMS_MEM3_STORAGE, MM_SMS_STORAGE_SM, NULL); } |