cosmetic: Fix open brace in same line as func definition

Change-Id: Ibde106ea9ae1aea2b7f8fc6d9ed80eb79579b9e0
This commit is contained in:
Pau Espin 2022-05-04 17:44:10 +02:00
parent 633523167d
commit 7cedfd4a44
4 changed files with 8 additions and 4 deletions

View File

@ -88,7 +88,8 @@ static void st_op_disabled_notinstalled(struct osmo_fsm_inst *fi, uint32_t event
}
}
static void configure_loop(struct gsm_bts *bts, struct gsm_nm_state *state, bool allow_opstart) {
static void configure_loop(struct gsm_bts *bts, struct gsm_nm_state *state, bool allow_opstart)
{
struct msgb *msgb;
/* Request generic BTS-level attributes */

View File

@ -86,7 +86,8 @@ static void st_op_disabled_notinstalled(struct osmo_fsm_inst *fi, uint32_t event
}
}
static void configure_loop(struct gsm_gprs_cell *cell, struct gsm_nm_state *state, bool allow_opstart) {
static void configure_loop(struct gsm_gprs_cell *cell, struct gsm_nm_state *state, bool allow_opstart)
{
struct msgb *msgb;
struct gsm_bts *bts = container_of(cell, struct gsm_bts, gprs.cell);

View File

@ -87,7 +87,8 @@ static void st_op_disabled_notinstalled(struct osmo_fsm_inst *fi, uint32_t event
}
}
static void configure_loop(struct gsm_gprs_nse *nse, struct gsm_nm_state *state, bool allow_opstart) {
static void configure_loop(struct gsm_gprs_nse *nse, struct gsm_nm_state *state, bool allow_opstart)
{
struct msgb *msgb;
struct gsm_bts_sm *bts_sm = container_of(nse, struct gsm_bts_sm, gprs.nse);
struct gsm_bts *bts = gsm_bts_sm_get_bts(bts_sm);

View File

@ -90,7 +90,8 @@ static void st_op_disabled_notinstalled(struct osmo_fsm_inst *fi, uint32_t event
}
}
static void configure_loop(struct gsm_gprs_nsvc *nsvc, struct gsm_nm_state *state, bool allow_opstart) {
static void configure_loop(struct gsm_gprs_nsvc *nsvc, struct gsm_nm_state *state, bool allow_opstart)
{
struct msgb *msgb;
if (nsvc->bts->gprs.mode == BTS_GPRS_NONE)