aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2021-08-31 09:24:37 +0200
committerlaforge <laforge@osmocom.org>2021-08-31 19:54:28 +0000
commit55ce87da69cd2ffa58beb309b905a13b6b9b60b5 (patch)
treed10888ed1aa0374264638390c1c34943c545e9cb
parent58f76d8b902b52252d253fc5ce6dfe5f8cd916ea (diff)
gsm_08_58: fix sourcecode formatting
struct abis_rsl_osmo_rep_acch_cap has an indentation level that is too deep. Change-Id: Ie15feac75d1aa4fe5e5e237b14119addf09e5d77
-rw-r--r--include/osmocom/gsm/protocol/gsm_08_58.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_08_58.h b/include/osmocom/gsm/protocol/gsm_08_58.h
index 0182d8d9..5713a0f9 100644
--- a/include/osmocom/gsm/protocol/gsm_08_58.h
+++ b/include/osmocom/gsm/protocol/gsm_08_58.h
@@ -123,19 +123,19 @@ struct abis_rsl_cchan_hdr {
/* Osmocom specific IE to negotiate repeated ACCH capabilities */
struct abis_rsl_osmo_rep_acch_cap {
#if OSMO_IS_BIG_ENDIAN
- uint8_t reserved:1,
- rxqual:3,
- ul_sacch:1,
- dl_sacch:1,
- dl_facch_all:1,
- dl_facch_cmd:1;
+ uint8_t reserved:1,
+ rxqual:3,
+ ul_sacch:1,
+ dl_sacch:1,
+ dl_facch_all:1,
+ dl_facch_cmd:1;
#elif OSMO_IS_LITTLE_ENDIAN
- uint8_t dl_facch_cmd:1,
- dl_facch_all:1,
- dl_sacch:1,
- ul_sacch:1,
- rxqual:3,
- reserved:1;
+ uint8_t dl_facch_cmd:1,
+ dl_facch_all:1,
+ dl_sacch:1,
+ ul_sacch:1,
+ rxqual:3,
+ reserved:1;
#endif
} __attribute__ ((packed));