Skip to content

Commit 6ceeb56

Browse files
asm5878jhedberg
authored andcommitted
drivers: bluetooth: hci: fix a typo in stm32wbax ble hci driver
Typo fix in assert condition used by stm32wbax ble hci driver. Signed-off-by: Alessandro Manganaro <alessandro.manganaro@st.com>
1 parent f7e51d7 commit 6ceeb56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/bluetooth/hci/hci_stm32wba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ void register_radio_event(void)
133133
/* Getting next radio event time if any */
134134
cmd_status = ll_intf_le_get_remaining_time_for_next_event(&next_radio_event_us);
135135
UNUSED(cmd_status);
136-
__ASSERT(cmd_staus, "Unable to retrieve next radio event");
136+
__ASSERT(cmd_status, "Unable to retrieve next radio event");
137137

138138
if (next_radio_event_us == LL_DP_SLP_NO_WAKEUP) {
139139
/* No next radio event scheduled */

0 commit comments

Comments
 (0)