aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/include/openbsc/abis_nm.h9
-rw-r--r--openbsc/src/abis_nm.c6
2 files changed, 9 insertions, 6 deletions
diff --git a/openbsc/include/openbsc/abis_nm.h b/openbsc/include/openbsc/abis_nm.h
index 201b90242..47baafb55 100644
--- a/openbsc/include/openbsc/abis_nm.h
+++ b/openbsc/include/openbsc/abis_nm.h
@@ -244,6 +244,12 @@ enum abis_nm_obj_class {
NM_OC_CHANNEL,
NM_OC_BASEB_TRANSC,
/* RFU: 05-FE */
+
+ NM_OC_IPAC_E1_TRUNK = 0x0e,
+ NM_OC_IPAC_E1_PORT = 0x0f,
+ NM_OC_IPAC_E1_CHAN = 0x10,
+ NM_OC_IPAC_CLK_MODULE = 0x22,
+
NM_OC_BS11_ADJC = 0xa0,
NM_OC_BS11_HANDOVER = 0xa1,
NM_OC_BS11_PWR_CTRL = 0xa2,
@@ -256,8 +262,7 @@ enum abis_nm_obj_class {
NM_OC_GPRS_NSE = 0xf0,
NM_OC_GPRS_CELL = 0xf1,
- NM_OC_GPRS_NSVC0 = 0xf2,
- NM_OC_GPRS_NSVC1 = 0xf3,
+ NM_OC_GPRS_NSVC = 0xf2,
NM_OC_NULL = 0xff,
};
diff --git a/openbsc/src/abis_nm.c b/openbsc/src/abis_nm.c
index b13ce55be..f2383e2fa 100644
--- a/openbsc/src/abis_nm.c
+++ b/openbsc/src/abis_nm.c
@@ -481,10 +481,8 @@ static const char *obj_class_name(u_int8_t oc)
return "GPRS NSE";
case NM_OC_GPRS_CELL:
return "GPRS CELL";
- case NM_OC_GPRS_NSVC0:
- return "GPRS NSVC0";
- case NM_OC_GPRS_NSVC1:
- return "GPRS NSVC1";
+ case NM_OC_GPRS_NSVC:
+ return "GPRS NSVC";
case NM_OC_BS11:
return "SIEMENSHW";
}