nimble/host: Fix tests compilation

This fix build regression after BLE_MONITOR was moved to transport.
This commit is contained in:
Szymon Janc
2022-03-18 16:40:44 +01:00
parent a8d2fa4063
commit 336eff834e
+3 -3
View File
@@ -1849,14 +1849,14 @@ ble_hs_test_util_assert_mbufs_freed(
}
int
ble_transport_to_ll_acl(struct os_mbuf *om)
ble_transport_to_ll_acl_impl(struct os_mbuf *om)
{
ble_hs_test_util_prev_tx_enqueue(om);
return 0;
}
int
ble_transport_to_ll_cmd(void *buf)
ble_transport_to_ll_cmd_impl(void *buf)
{
ble_hs_test_util_hci_out_enqueue(buf);
ble_transport_free(buf);
@@ -2046,4 +2046,4 @@ void
ble_transport_ll_init(void)
{
/* nothing here */
}
}