qmi/discovery: include control service into service list

There is no need to exclude it. It helps debugging because the service is now logged.
This commit is contained in:
Alexander Couzens 2017-08-21 04:36:14 +02:00
parent bfb71b4829
commit d7fda89cbc
1 changed files with 5 additions and 7 deletions

View File

@ -1136,15 +1136,12 @@ static void discover_callback(uint16_t message, uint16_t length,
if (type == QMI_SERVICE_CONTROL) {
device->control_major = major;
device->control_minor = minor;
continue;
}
list[count].type = type;
list[count].major = major;
list[count].minor = minor;
list[count].name = name;
count++;
list[i].type = type;
list[i].major = major;
list[i].minor = minor;
list[i].name = name;
if (name)
__debug_device(device, "found service [%s %d.%d]",
@ -1153,6 +1150,7 @@ static void discover_callback(uint16_t message, uint16_t length,
__debug_device(device, "found service [%d %d.%d]",
type, major, minor);
}
count = service_list->count;
ptr = tlv_get(buffer, length, 0x10, &len);
if (!ptr)