dexter has uploaded this change for review.

View Change

pcuif_proto: use define constant to specify nax number of trx

The array of trx in gsm_pcu_if_info_ind can hold trx 8 items. Lets use a
define constant to specify the size of that array.

Change-Id: I25a9233e7be2d7cda8eb45a4cb9dddd3511d03c9
---
M include/osmocom/bsc/pcuif_proto.h
1 file changed, 2 insertions(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/86/30586/1
diff --git a/include/osmocom/bsc/pcuif_proto.h b/include/osmocom/bsc/pcuif_proto.h
index 5084cb8..fef0f88 100644
--- a/include/osmocom/bsc/pcuif_proto.h
+++ b/include/osmocom/bsc/pcuif_proto.h
@@ -63,6 +63,7 @@
#define PCU_IF_ADDR_TYPE_IPV6 0x29 /* IPv6 address */

#define PCU_IF_NUM_NSVC 2
+#define PCU_IF_NUM_TRX 8

enum gsm_pcu_if_text_type {
PCU_VERSION,
@@ -146,7 +147,7 @@
struct gsm_pcu_if_info_ind {
uint32_t version;
uint32_t flags;
- struct gsm_pcu_if_info_trx trx[8]; /* TRX infos per BTS */
+ struct gsm_pcu_if_info_trx trx[PCU_IF_NUM_TRX]; /* TRX infos per BTS */
uint8_t bsic;
/* RAI */
uint16_t mcc, mnc;

To view, visit change 30586. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-bsc
Gerrit-Branch: master
Gerrit-Change-Id: I25a9233e7be2d7cda8eb45a4cb9dddd3511d03c9
Gerrit-Change-Number: 30586
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier@sysmocom.de>
Gerrit-MessageType: newchange