Bluetooth: controller: Minor relocation of lll_conn_flush function

Minor relocation of lll_conn_flush function to place alongwith
non-static functions.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2020-09-09 16:23:52 +05:30 committed by Ioannis Glaropoulos
commit 2dc174fb10

View file

@ -75,6 +75,11 @@ int lll_conn_reset(void)
return 0;
}
void lll_conn_flush(uint16_t handle, struct lll_conn *lll)
{
/* Nothing to be flushed */
}
uint8_t lll_conn_sca_local_get(void)
{
return CLOCK_CONTROL_NRF_K32SRC_ACCURACY;
@ -784,8 +789,3 @@ static struct pdu_data *empty_tx_enqueue(struct lll_conn *lll)
return p;
}
void lll_conn_flush(uint16_t handle, struct lll_conn *lll)
{
/* Nothing to be flushed */
}