On Thursday 09 of January 2014 09:39:19 Szymon Janc wrote: > On first start always set name to default name. Adapter name is > updated on start only if current name is different. > --- > android/bluetooth.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/android/bluetooth.c b/android/bluetooth.c > index 9da988b..6aad9b5 100644 > --- a/android/bluetooth.c > +++ b/android/bluetooth.c > @@ -50,6 +50,8 @@ > #include "utils.h" > #include "bluetooth.h" > > +#define DEFAULT_ADAPTER_NAME "BlueZ for Android" > + > #define DUT_MODE_FILE "/sys/kernel/debug/bluetooth/hci%u/dut_mode" > > #define DEVICE_ID_SOURCE 0x0002 /* USB */ > @@ -1734,15 +1736,17 @@ static void read_info_complete(uint8_t status, uint16_t length, > > if (!bacmp(&adapter.bdaddr, BDADDR_ANY)) { > bacpy(&adapter.bdaddr, &rp->bdaddr); > - adapter.name = g_strdup((const char *) rp->name); > + adapter.name = g_strdup(DEFAULT_ADAPTER_NAME); > store_adapter_config(); > - set_adapter_name(rp->name, strlen((char *)rp->name)); > } else if (bacmp(&adapter.bdaddr, &rp->bdaddr)) { > error("Bluetooth address mismatch"); > err = -ENODEV; > goto failed; > } > > + if (g_strcmp0(adapter.name, (const char *) rp->name)) > + set_adapter_name((uint8_t *)adapter.name, strlen(adapter.name)); > + > /* Store adapter information */ > adapter.dev_class = rp->dev_class[0] | (rp->dev_class[1] << 8) | > (rp->dev_class[2] << 16); > Both patches are now pushed upstream. -- Best regards, Szymon Janc -- 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