abis_om2k: fix typo that declared non-existent struct gsm_bts_trx_s

The typo was recently committed in 80ccb95267,
"OM2000: Fix missing dynamic TCH initialization"

Change-Id: I8e3eec8cf63494962fa31d85a0ec9db9a9e5df46
This commit is contained in:
Neels Hofmeyr 2016-12-02 01:58:08 +01:00 committed by Harald Welte
parent ce090f890b
commit 2b9c53408f
1 changed files with 1 additions and 1 deletions

View File

@ -1682,7 +1682,7 @@ static void om2k_mo_st_wait_opinfo_accept(struct osmo_fsm_inst *fi, uint32_t eve
/* if we have just received opinfo accept for the timeslot,
* start dynamic TCH switching procedures */
if (omfp->mo->addr.class == OM2K_MO_CLS_TS) {
struct gsm_bts_trx_s *ts;
struct gsm_bts_trx_ts *ts;
ts = mo2obj(omfp->trx->bts, &omfp->mo->addr);
dyn_ts_init(ts);
}