From 8d7bf4b053a7a74fb5777998dea333fcfe767f6f Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Mon, 13 Jun 2022 13:13:57 +0200 Subject: [PATCH] iuup: Drop unused events Those events are not realy used there and they are not even present in the FSM definition. Let's drop them. Change-Id: I4beec96ac4bdf047ebf144a8b009b297b47cacdc --- src/gsm/iuup.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/gsm/iuup.c b/src/gsm/iuup.c index bd9e82cba..4c0a9482e 100644 --- a/src/gsm/iuup.c +++ b/src/gsm/iuup.c @@ -757,12 +757,6 @@ static void iuup_fsm_smpsdu_data(struct osmo_fsm_inst *fi, uint32_t event, void irp = tnl_to_rnl_data(itp); iui->user_prim_cb(&irp->oph, iui->user_prim_priv); break; - case IUUP_FSM_EVT_IUUP_UNITDATA_REQ: - case IUUP_FSM_EVT_IUUP_UNITDATA_IND: - case IUUP_FSM_EVT_SSASAR_UNITDATA_REQ: - case IUUP_FSM_EVT_SSASAR_UNITDATA_IND: - /* no state change */ - break; } }