From 720be0f23f2e757d772a44e3acf8a7405e784f68 Mon Sep 17 00:00:00 2001 From: lly Date: Wed, 20 Jan 2021 14:48:24 +0800 Subject: [PATCH] ble_mesh: stack: Remove node set device name return status check --- .../esp_ble_mesh/mesh_core/bluedroid_host/mesh_bearer_adapt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/mesh_bearer_adapt.c b/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/mesh_bearer_adapt.c index 963eebda25..5b8df6c0b2 100644 --- a/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/mesh_bearer_adapt.c +++ b/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/mesh_bearer_adapt.c @@ -1092,7 +1092,7 @@ int bt_mesh_gatts_service_start(struct bt_mesh_gatt_service *svc) int bt_mesh_gatts_set_local_device_name(const char *name) { - BLE_MESH_BTM_CHECK_STATUS(BTM_SetLocalDeviceName((char *)name)); + BTM_SetLocalDeviceName((char *)name); return 0; }