aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2023-07-31 14:55:20 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2023-07-31 14:55:25 +0200
commit0f51adb03efc5fb7f96c3eb6f7f3acf5e2d59a9f (patch)
tree94ce073083b7d09e33a2792f44e7960583d75965
parentb4a6069f82c5948f96b7b5a8eea9b3506e437119 (diff)
rlcmac: Fix OSMO_GPRS_RLCMAC_GMMRR_LLC_TRANSMITTED declared in wrong offset
This enum should match osmo_gprs_gmm_gmmrr_prim_type, and I placed that osmocom-specific enum at the wrong place in the rlcmac counterpart. Change-Id: I3f198c756866417f8f975373f84fd3ec4da608fa
-rw-r--r--include/osmocom/gprs/rlcmac/rlcmac_prim.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/gprs/rlcmac/rlcmac_prim.h b/include/osmocom/gprs/rlcmac/rlcmac_prim.h
index 70d1075..acb0d75 100644
--- a/include/osmocom/gprs/rlcmac/rlcmac_prim.h
+++ b/include/osmocom/gprs/rlcmac/rlcmac_prim.h
@@ -71,8 +71,8 @@ struct osmo_gprs_rlcmac_grr_prim {
*/
enum osmo_gprs_rlcmac_gmmrr_prim_type {
OSMO_GPRS_RLCMAC_GMMRR_ASSIGN, /* Req: newTLLI */
- OSMO_GPRS_RLCMAC_GMMRR_LLC_TRANSMITTED, /* Ind: TLLI */
OSMO_GPRS_RLCMAC_GMMRR_PAGE, /* Ind: TLLI */
+ OSMO_GPRS_RLCMAC_GMMRR_LLC_TRANSMITTED, /* Ind: TLLI */
};
extern const struct value_string osmo_gprs_rlcmac_gmmrr_prim_type_names[];