aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2023-01-27 11:21:44 +0100
committerosmith <osmith@sysmocom.de>2023-01-31 11:43:33 +0000
commit52d8df1e3f45744b2794909cad75452c16a80a34 (patch)
tree4149752bcb405d1b8c51d27e69a4e05ee38b8aa6
parentbc12728679f8d42e9e8b2ff7639effdf0a4fa767 (diff)
gsm_08_08.h: fix typo in GSM0808_DATA_FULL_PREF
-rw-r--r--include/osmocom/gsm/protocol/gsm_08_08.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_08_08.h b/include/osmocom/gsm/protocol/gsm_08_08.h
index c7cf1d8a..96ac6af0 100644
--- a/include/osmocom/gsm/protocol/gsm_08_08.h
+++ b/include/osmocom/gsm/protocol/gsm_08_08.h
@@ -446,10 +446,11 @@ enum gsm0808_chan_indicator {
};
/* GSM 08.08 3.2.2.11 Channel Type */
+#define GSM0808_DATA_FULL_RPREF GSM0808_DATA_FULL_PREF
enum gsm0808_chan_rate_type_data {
GSM0808_DATA_FULL_BM = 0x8,
GSM0808_DATA_HALF_LM = 0x9,
- GSM0808_DATA_FULL_RPREF = 0xa,
+ GSM0808_DATA_FULL_PREF = 0xa,
GSM0808_DATA_HALF_PREF = 0xb,
GSM0808_DATA_FULL_PREF_NO_CHANGE = 0x1a,
GSM0808_DATA_HALF_PREF_NO_CHANGE = 0x1b,