Bluetooth: controller: Rename ull_tx_ack_put to ll_tx_ack_put

Rename ull_tx_ack_put to ll_tx_ack_put as ack is enqueued
into LL thread context from ULL ISR context.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2019-02-04 22:33:51 +05:30 committed by Carles Cufí
commit e85c4d00b6
3 changed files with 20 additions and 20 deletions

View file

@ -1126,7 +1126,7 @@ void ull_conn_tx_demux(u8_t count)
struct pdu_data *p = (void *)tx->pdu;
p->ll_id = PDU_DATA_LLID_RESV;
ull_tx_ack_put(0xFFFF, tx);
ll_tx_ack_put(0xFFFF, tx);
}
MFIFO_DEQUEUE(conn_tx);
@ -1198,7 +1198,7 @@ void ull_conn_tx_ack(struct ll_conn *conn, memq_link_t *link,
}
}
ull_tx_ack_put(conn->lll.handle, tx);
ll_tx_ack_put(conn->lll.handle, tx);
}
static int init_reset(void)