diff options
author | Clayton Craft <clayton@craftyguy.net> | 2022-11-30 11:38:17 -0800 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2022-12-06 13:55:33 +0000 |
commit | 279d1c99c4d7c4021215b9d7293f1a8d4fd47917 (patch) | |
tree | a2a13a51a47beaae1e5d0393735556f538dd19f4 | |
parent | 0d6651aeb60b88fb22bbba9f5aab279f7455d11f (diff) |
broadmobi: add MM_PLUGIN_REQUIRED_QCDM flag
This fixes an issue where, with an BM818 connected over USB,
suspending/resuming the modem causes the modem to reset immediately.
The culprit was bisected to d6203265c2, where QCDM probing was disabled
unless explicitly requested, so I assume this modem needs it based on
the constant resetting when power management was enabled on the modem's
usb connection.
-rw-r--r-- | plugins/broadmobi/mm-plugin-broadmobi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/broadmobi/mm-plugin-broadmobi.c b/plugins/broadmobi/mm-plugin-broadmobi.c index 0c91f728..805663fe 100644 --- a/plugins/broadmobi/mm-plugin-broadmobi.c +++ b/plugins/broadmobi/mm-plugin-broadmobi.c @@ -76,7 +76,7 @@ mm_plugin_create (void) MM_PLUGIN_ALLOWED_SUBSYSTEMS, subsystems, MM_PLUGIN_ALLOWED_VENDOR_IDS, vendor_ids, MM_PLUGIN_ALLOWED_AT, TRUE, - MM_PLUGIN_ALLOWED_QCDM, TRUE, + MM_PLUGIN_REQUIRED_QCDM, TRUE, MM_PLUGIN_ALLOWED_QMI, TRUE, NULL)); } |