aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-02-06 13:55:28 +0100
committerdexter <pmaier@sysmocom.de>2023-02-07 14:11:39 +0000
commit64930d8000302aad6c92086b65ab839df3762537 (patch)
tree531b77f300dc01fcc5e3a03759c33e73fbe7a077
parentdc634a8836da92d21168d43d5f25572437133dc6 (diff)
pcuif_proto: move gsm_pcu_if_e1_ccu_ind into right place
The struct gsm_pcu_if_e1_ccu_ind is a bit misplaced. Lets move it next to the info indication strucht, to have it in the same order is it used in gsm_pcu_if Change-Id: I41237c7847ab7a14ed2cd85dd32aabb3a6124a49 Related: OS#5198
-rw-r--r--include/osmocom/bsc/pcuif_proto.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/osmocom/bsc/pcuif_proto.h b/include/osmocom/bsc/pcuif_proto.h
index 720723e11..bf05b01c9 100644
--- a/include/osmocom/bsc/pcuif_proto.h
+++ b/include/osmocom/bsc/pcuif_proto.h
@@ -187,6 +187,17 @@ struct gsm_pcu_if_info_ind {
} remote_ip[PCU_IF_NUM_NSVC];
} __attribute__ ((packed));
+/* E1 CCU connection parameters */
+struct gsm_pcu_if_e1_ccu_ind {
+ /* GSM/GPRS air interface */
+ uint8_t trx_nr;
+ uint8_t ts_nr;
+ /* E1 line interface */
+ uint8_t e1_nr;
+ uint8_t e1_ts;
+ uint8_t e1_ts_ss;
+} __attribute__ ((packed));
+
struct gsm_pcu_if_act_req {
uint8_t activate;
uint8_t trx_nr;
@@ -258,17 +269,6 @@ struct gsm_pcu_if_neigh_addr_cnf {
} cgi_ps;
} __attribute__ ((packed));
-/* E1 CCU connection parameters */
-struct gsm_pcu_if_e1_ccu_ind {
- /* GSM/GPRS air interface */
- uint8_t trx_nr;
- uint8_t ts_nr;
- /* E1 line interface */
- uint8_t e1_nr;
- uint8_t e1_ts;
- uint8_t e1_ts_ss;
-} __attribute__ ((packed));
-
struct gsm_pcu_if {
/* context based information */
uint8_t msg_type; /* message type */