diff --git a/android/bluetooth.c b/android/bluetooth.c
index 3cbf68d..f281fcf 100644
--- a/android/bluetooth.c
+++ b/android/bluetooth.c
return HAL_STATUS_SUCCESS;
}
+static void get_remote_device_props(struct device *dev)
+{
+ get_device_name(dev);
+ get_device_uuids(dev);
+ get_device_class(dev);
+ get_device_type(dev);
+ get_device_service_rec(dev);
+ get_device_friendly_name(dev);
+ get_device_rssi(dev);
+ get_device_version_info(dev);
+ get_device_timestamp(dev);
+}
+
static void handle_get_remote_device_props_cmd(const void *buf, uint16_t len)
{
const struct hal_cmd_get_remote_device_props *cmd = buf;
goto failed;
}
- get_device_name(l->data);
- get_device_uuids(l->data);
- get_device_class(l->data);
- get_device_type(l->data);
- get_device_service_rec(l->data);
- get_device_friendly_name(l->data);
- get_device_rssi(l->data);
- get_device_version_info(l->data);
- get_device_timestamp(l->data);
+ get_remote_device_props(l->data);
status = HAL_STATUS_SUCCESS;