gsm_08_58: fix sourcecode formatting

struct abis_rsl_osmo_rep_acch_cap has an indentation level that is too
deep.

Change-Id: Ie15feac75d1aa4fe5e5e237b14119addf09e5d77
This commit is contained in:
Philipp Maier 2021-08-31 09:24:37 +02:00 committed by laforge
parent 58f76d8b90
commit 55ce87da69
1 changed files with 12 additions and 12 deletions

View File

@ -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));