From 945083cf6c09374abb3e60f44d6161cc26832ea8 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Fri, 11 Apr 2014 09:41:27 +0200 Subject: [PATCH] android/tester: Device properties can come in any order There is no point in forcing specific order of device properties. --- android/android-tester.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/android/android-tester.c b/android/android-tester.c index 7989f14bf..f7f3f31a7 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -1864,37 +1864,31 @@ static struct priority_property remote_getprops_props[] = { .prop.type = BT_PROPERTY_BDNAME, .prop.val = &remote_get_properties_bdname_val, .prop.len = sizeof(remote_get_properties_bdname_val) - 1, - .prio = 1, }, { .prop.type = BT_PROPERTY_UUIDS, .prop.val = NULL, .prop.len = 0, - .prio = 2, }, { .prop.type = BT_PROPERTY_CLASS_OF_DEVICE, .prop.val = &remote_get_properties_cod_val, .prop.len = sizeof(remote_get_properties_cod_val), - .prio = 3, }, { .prop.type = BT_PROPERTY_TYPE_OF_DEVICE, .prop.val = &remote_get_properties_tod_val, .prop.len = sizeof(remote_get_properties_tod_val), - .prio = 4, }, { .prop.type = BT_PROPERTY_REMOTE_RSSI, .prop.val = &remote_get_properties_rssi_val, .prop.len = sizeof(remote_get_properties_rssi_val), - .prio = 5, }, { .prop.type = BT_PROPERTY_REMOTE_DEVICE_TIMESTAMP, .prop.val = NULL, .prop.len = 4, - .prio = 6, }, }; -- 2.47.3