Bluetooth: controller: Remove unused lll scan struct member

Remove the unused LLL scan context struct member,
conn_ticks_slot.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2020-12-17 06:48:43 +05:30 committed by Carles Cufí
commit 35c397fc46
2 changed files with 0 additions and 2 deletions

View file

@ -10,7 +10,6 @@ struct lll_scan {
#if defined(CONFIG_BT_CENTRAL)
/* NOTE: conn context has to be after lll_hdr */
struct lll_conn *conn;
uint32_t conn_ticks_slot;
uint32_t conn_win_offset_us;
uint16_t conn_timeout;
#endif /* CONFIG_BT_CENTRAL */

View file

@ -143,7 +143,6 @@ uint8_t ll_create_connection(uint16_t scan_interval, uint16_t scan_window,
lll->adv_addr_type = peer_addr_type;
memcpy(lll->adv_addr, peer_addr, BDADDR_SIZE);
lll->conn_timeout = timeout;
lll->conn_ticks_slot = 0; /* TODO: */
conn_lll = &conn->lll;