Bluetooth: Controller: use BT_WARN to display unknown rsp

Use BT_WARN instead of BT_ASSERT to display unknown rsp in
HCI layer.

Change-id: I63c792468d9c4768f69df73395ee026a03521704
Signed-off-by: Vinayak Chettimada <vinayak.kariappa.chettimada@nordicsemi.no>
This commit is contained in:
Vinayak Chettimada 2016-12-25 17:39:37 +01:00 committed by Johan Hedberg
commit 6996619399

View file

@ -1169,7 +1169,8 @@ static void le_unknown_rsp(struct pdu_data *pdu_data, uint16_t handle,
break;
default:
BT_ASSERT(0);
BT_WARN("type: 0x%02x",
pdu_data->payload.llctrl.ctrldata.unknown_rsp.type);
break;
}
}