aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-07-03 15:59:52 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-07-05 18:16:08 +0200
commit8ca8a26ce95a1760a4574f71c2c4113da8aa80ff (patch)
tree9a16de16ca10764fedb0ee1835e2807dbb648a98 /include
parent221ee92551a3d34c4f61e99e5bf4aa718c4d6f88 (diff)
gsm_data.h: Use enum type for NM state fields
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/gsm_data.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmo-bts/gsm_data.h b/include/osmo-bts/gsm_data.h
index 7b4d4569..97f5cde4 100644
--- a/include/osmo-bts/gsm_data.h
+++ b/include/osmo-bts/gsm_data.h
@@ -83,9 +83,9 @@ struct smscb_msg;
/* Network Management State */
struct gsm_nm_state {
- uint8_t operational;
- uint8_t administrative;
- uint8_t availability;
+ enum abis_nm_op_state operational;
+ enum abis_nm_adm_state administrative;
+ enum abis_nm_avail_state availability;
};
struct gsm_abis_mo {