Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nrf_rpc/nrf_rpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ static int group_init_send(const struct nrf_rpc_group *group)
return send(group, tx_buf, NRF_RPC_HEADER_SIZE + len);
}

static inline bool packet_validate(const uint8_t *packet)
static inline __attribute__((unused)) bool packet_validate(const uint8_t *packet)
{
uintptr_t addr = (uintptr_t)packet;
/* Checking NULL may be sometimes not enough, because pointer can be
Expand Down