Move storage of device class after device object creation. --- src/adapter.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/adapter.c b/src/adapter.c index 5157b46..9ecc0fa 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -3070,9 +3070,6 @@ void adapter_update_found_devices(struct btd_adapter *adapter, return; } - if (eir_data.class != 0) - write_remote_class(&adapter->bdaddr, bdaddr, eir_data.class); - if (eir_data.appearance != 0) write_remote_appearance(&adapter->bdaddr, bdaddr, bdaddr_type, eir_data.appearance); @@ -3102,6 +3099,9 @@ void adapter_update_found_devices(struct btd_adapter *adapter, if (eir_data.name) device_set_name(dev, eir_data.name); + if (eir_data.class != 0) + device_set_class(dev, eir_data.class); + device_add_eir_uuids(dev, eir_data.services); eir_data_free(&eir_data); -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html