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:
parent
5aa9d2ce1e
commit
e6a256a785
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue