Commit 07ea194a authored by Zhihai Xu's avatar Zhihai Xu Committed by Android (Google) Code Review
Browse files

Merge "DO NOT MERGE use bluetooth HID remote device name as input device name." into klp-dev

parents f677f810 ad73b9c5
......@@ -938,9 +938,18 @@ static void btif_hh_upstreams_evt(UINT16 event, char* p_param)
}
{
char *cached_name = NULL;
char name[] = "Broadcom Bluetooth HID";
if (cached_name == NULL) {
cached_name = name;
bt_bdname_t bdname;
bt_property_t prop_name;
BTIF_STORAGE_FILL_PROPERTY(&prop_name, BT_PROPERTY_BDNAME,
sizeof(bt_bdname_t), &bdname);
if (btif_storage_get_remote_device_property(
&p_dev->bd_addr, &prop_name) == BT_STATUS_SUCCESS)
{
cached_name = (char *)bdname.name;
}
else
{
cached_name = "Bluetooth HID";
}
BTIF_TRACE_WARNING2("%s: name = %s", __FUNCTION__, cached_name);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment