Skip to content
Open
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: 0 additions & 2 deletions include/bm/softdevice_handler/nrf_sdh.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ struct nrf_sdh_state_evt_observer {
*/
#define NRF_SDH_STATE_EVT_OBSERVER(_observer, _handler, _ctx, _prio) \
PRIO_LEVEL_IS_VALID(_prio); \
static int _handler(enum nrf_sdh_state_evt, void *); \
static TYPE_SECTION_ITERABLE(struct nrf_sdh_state_evt_observer, _observer, \
nrf_sdh_state_evt_observers, PRIO_LEVEL_ORD(_prio)) = { \
.handler = _handler, \
Expand Down Expand Up @@ -190,7 +189,6 @@ struct nrf_sdh_stack_evt_observer {
*/
#define NRF_SDH_STACK_EVT_OBSERVER(_observer, _handler, _ctx, _prio) \
PRIO_LEVEL_IS_VALID(_prio); \
static void _handler(void *); \
static const TYPE_SECTION_ITERABLE(struct nrf_sdh_stack_evt_observer, _observer, \
nrf_sdh_stack_evt_observers, PRIO_LEVEL_ORD(_prio)) = { \
.handler = _handler, \
Expand Down
Loading