aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2017-01-31 15:34:26 +0100
committerHarald Welte <laforge@gnumonks.org>2017-02-07 00:41:31 +0000
commit4f8da6dfd56a936151fd9d7c647152333c6def1a (patch)
treea31398e73e5a1490343e5a36dcc6decf1463e81c /openbsc/include/openbsc
parent48324fed117d3b2d585b80c08449db67384b5a26 (diff)
gprs/sgsn: rename gprs->mm_state -> gmm_state
GMM is the right term. MM state is already occupied. Change-Id: I9cfdcf921e4ebd14a5e7ce7489ec4ce5d1f5515f
Diffstat (limited to 'openbsc/include/openbsc')
-rw-r--r--openbsc/include/openbsc/gprs_sgsn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/openbsc/include/openbsc/gprs_sgsn.h b/openbsc/include/openbsc/gprs_sgsn.h
index dc165d30e..f50de1115 100644
--- a/openbsc/include/openbsc/gprs_sgsn.h
+++ b/openbsc/include/openbsc/gprs_sgsn.h
@@ -36,9 +36,9 @@ enum gprs_pmm_state {
PMM_DETACHED,
PMM_CONNECTED,
PMM_IDLE,
- MM_IDLE = PMM_DETACHED,
- MM_READY = PMM_CONNECTED,
- MM_STANDBY = PMM_IDLE,
+ MM_IDLE,
+ MM_READY,
+ MM_STANDBY,
};
enum gprs_mm_ctr {
@@ -126,7 +126,7 @@ struct sgsn_mm_ctx {
enum sgsn_ran_type ran_type;
char imsi[GSM23003_IMSI_MAX_DIGITS+1];
- enum gprs_gmm_state mm_state;
+ enum gprs_gmm_state gmm_state;
enum gprs_pmm_state pmm_state; /* Iu: page when in PMM-IDLE mode */
uint32_t p_tmsi;
uint32_t p_tmsi_old; /* old P-TMSI before new is confirmed */