aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-04-18 18:58:36 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-04-18 18:58:36 +0200
commitafa0ad17238cd0a0dfd1d62929f937739f79b24d (patch)
tree76e38a1a5741183f2997575eda4b15fd26a16dde /openbsc/include
parentcc7b22a53b2842af59f7bb84ca71c4edf455636c (diff)
lchan: Fix the name of the SACCH in the variable names
Call the channel by the right name.
Diffstat (limited to 'openbsc/include')
-rw-r--r--openbsc/include/openbsc/bsc_api.h2
-rw-r--r--openbsc/include/openbsc/chan_alloc.h2
-rw-r--r--openbsc/include/openbsc/gsm_data_shared.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/include/openbsc/bsc_api.h b/openbsc/include/openbsc/bsc_api.h
index 910ce9e00..472c8e471 100644
--- a/openbsc/include/openbsc/bsc_api.h
+++ b/openbsc/include/openbsc/bsc_api.h
@@ -37,7 +37,7 @@ struct bsc_api {
};
int bsc_api_init(struct gsm_network *network, struct bsc_api *api);
-int gsm0808_submit_dtap(struct gsm_subscriber_connection *conn, struct msgb *msg, int link_id, int allow_sach);
+int gsm0808_submit_dtap(struct gsm_subscriber_connection *conn, struct msgb *msg, int link_id, int allow_sacch);
int gsm0808_assign_req(struct gsm_subscriber_connection *conn, int chan_mode, int full_rate);
int gsm0808_cipher_mode(struct gsm_subscriber_connection *conn, int cipher,
const uint8_t *key, int len, int include_imeisv);
diff --git a/openbsc/include/openbsc/chan_alloc.h b/openbsc/include/openbsc/chan_alloc.h
index 1a7c85770..f1c890e9d 100644
--- a/openbsc/include/openbsc/chan_alloc.h
+++ b/openbsc/include/openbsc/chan_alloc.h
@@ -46,7 +46,7 @@ void lchan_free(struct gsm_lchan *lchan);
void lchan_reset(struct gsm_lchan *lchan);
/* Release the given lchan */
-int lchan_release(struct gsm_lchan *lchan, int sach_deact, int release_mode);
+int lchan_release(struct gsm_lchan *lchan, int sacch_deact, int release_mode);
struct load_counter {
unsigned int total;
diff --git a/openbsc/include/openbsc/gsm_data_shared.h b/openbsc/include/openbsc/gsm_data_shared.h
index acee10c0f..6fb63f9b0 100644
--- a/openbsc/include/openbsc/gsm_data_shared.h
+++ b/openbsc/include/openbsc/gsm_data_shared.h
@@ -177,7 +177,7 @@ struct gsm_lchan {
/* Established data link layer services */
uint8_t sapis[8];
- int sach_deact;
+ int sacch_deact;
/** GSM 08.58 9.3.20 */
int release_mode;