From ab4460690d45698d0c58ba6761d40b726fe7050e Mon Sep 17 00:00:00 2001 From: Jonas Bonn Date: Fri, 26 Oct 2018 12:13:12 +0200 Subject: [PATCH] mbim: remove unused modem data Neither the Vendor nor Model strings are used by the mbim plugin. --- plugins/udevng.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/udevng.c b/plugins/udevng.c index 3c39e681..11338f78 100644 --- a/plugins/udevng.c +++ b/plugins/udevng.c @@ -962,8 +962,6 @@ static gboolean setup_mbim(struct modem_info *modem) ofono_modem_set_string(modem->modem, "Device", ctl); ofono_modem_set_string(modem->modem, "NetworkInterface", net); ofono_modem_set_string(modem->modem, "DescriptorFile", descriptors); - ofono_modem_set_string(modem->modem, "Vendor", modem->vendor); - ofono_modem_set_string(modem->modem, "Model", modem->model); return TRUE; }