Bluetooth: controller: Fix Rx buffer size variable data type

Fix the Rx buffer size variable data type to fit memory
block sizes greater than 255.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2019-02-11 22:51:07 +05:30 committed by Carles Cufí
parent 5aa9d2ce1e
commit e6a256a785

View file

@ -154,7 +154,7 @@ static MFIFO_DEFINE(ll_pdu_rx_free, sizeof(void *), LL_PDU_RX_CNT);
PDU_RX_OCTETS_MAX))) * RX_CNT)
static struct {
u8_t size; /* Runtime (re)sized info */
u16_t size; /* Runtime (re)sized info */
void *free;
u8_t pool[PDU_RX_POOL_SIZE];