summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-06-20 19:10:21 +0200
committerHarald Welte <laforge@gnumonks.org>2010-06-20 19:10:21 +0200
commit281ea8049815e715bbb0a4b54c0cdda376c1d245 (patch)
treecc96bdd2f920bab780ac5dff692354d7fb4733c4 /include
parentcb38815c0b91fe25a1876e83c239b2908fa2a80c (diff)
[L1CTL] rename primitives to comply with official naming s/_REQ/_CONF/
When L23 issues a REQ, we should respond with CONF, rather than _RESP
Diffstat (limited to 'include')
-rw-r--r--include/l1a_l23_interface.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/l1a_l23_interface.h b/include/l1a_l23_interface.h
index 3782c58d..ab91bfa2 100644
--- a/include/l1a_l23_interface.h
+++ b/include/l1a_l23_interface.h
@@ -25,19 +25,19 @@
#define l1a_l23_interface_h
#define L1CTL_FBSB_REQ 1
-#define L1CTL_FBSB_RESP 2
+#define L1CTL_FBSB_CONF 2
#define L1CTL_DATA_IND 3
#define L1CTL_RACH_REQ 4
#define L1CTL_DM_EST_REQ 5
#define L1CTL_DATA_REQ 7
#define L1CTL_RESET_IND 8
#define L1CTL_PM_REQ 9 /* power measurement */
-#define L1CTL_PM_RESP 10 /* power measurement */
+#define L1CTL_PM_CONF 10 /* power measurement */
#define L1CTL_ECHO_REQ 11
-#define L1CTL_ECHO_RESP 12
-#define L1CTL_RACH_RESP 13
+#define L1CTL_ECHO_CONF 12
+#define L1CTL_RACH_CONF 13
#define L1CTL_RESET_REQ 14
-#define L1CTL_RESET_RESP 15
+#define L1CTL_RESET_CONF 15
/*
* NOTE: struct size. We do add manual padding out of the believe
@@ -76,7 +76,7 @@ struct l1ctl_info_dl {
} __attribute__((packed));
/* new CCCH was found. This is following the header */
-struct l1ctl_fbsb_resp {
+struct l1ctl_fbsb_conf {
int16_t initial_freq_err;
uint8_t result;
uint8_t bsic;
@@ -163,7 +163,7 @@ struct l1ctl_pm_req {
} __attribute__((packed));
/* a single L1CTL_PM response */
-struct l1ctl_pm_resp {
+struct l1ctl_pm_conf {
uint16_t band_arfcn;
uint8_t pm[2];
} __attribute__((packed));