Skip to content

Commit 52f8340

Browse files
57300kartben
authored andcommitted
drivers: firmware: nrf_ironside: Make events static
Events used in `call.c` should've been defined as static. Signed-off-by: Grzegorz Swiderski <[email protected]>
1 parent 3353bbc commit 52f8340

File tree

1 file changed

+2
-2
lines changed
  • drivers/firmware/nrf_ironside

1 file changed

+2
-2
lines changed

drivers/firmware/nrf_ironside/call.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ BUILD_ASSERT((sizeof(struct ironside_call_buf) % CONFIG_DCACHE_LINE_SIZE) == 0);
2929
static const struct mbox_dt_spec mbox_rx = MBOX_DT_SPEC_INST_GET(0, rx);
3030
static const struct mbox_dt_spec mbox_tx = MBOX_DT_SPEC_INST_GET(0, tx);
3131

32-
K_EVENT_DEFINE(alloc_evts);
33-
K_EVENT_DEFINE(rsp_evts);
32+
static K_EVENT_DEFINE(alloc_evts);
33+
static K_EVENT_DEFINE(rsp_evts);
3434

3535
static void ironside_call_rsp(const struct device *dev, mbox_channel_id_t channel_id,
3636
void *user_data, struct mbox_msg *data)

0 commit comments

Comments
 (0)