summaryrefslogtreecommitdiffstats
path: root/drivers/qmimodem
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/qmimodem')
-rw-r--r--drivers/qmimodem/qmi.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/qmimodem/qmi.c b/drivers/qmimodem/qmi.c
index b2f2276a..16265b46 100644
--- a/drivers/qmimodem/qmi.c
+++ b/drivers/qmimodem/qmi.c
@@ -1049,8 +1049,12 @@ static void discover_callback(uint16_t message, uint16_t length,
count++;
- __debug_device(device, "found service [%s %d.%d]",
- name, major, minor);
+ if (name)
+ __debug_device(device, "found service [%s %d.%d]",
+ name, major, minor);
+ else
+ __debug_device(device, "found service [%d %d.%d]",
+ type, major, minor);
}
ptr = tlv_get(buffer, length, 0x10, &len);