TRX: Add stub bts_model_change_power() function

This just fixes linking. It still needs to be properly implemented
This commit is contained in:
Harald Welte 2016-01-09 10:21:31 +01:00
parent 6d101a79a8
commit 8250800d3b
1 changed files with 6 additions and 0 deletions

View File

@ -714,3 +714,9 @@ int bts_model_oml_estab(struct gsm_bts *bts)
return 0;
}
int bts_model_change_power(struct gsm_bts_trx *trx, int p_trxout_mdBm)
{
#warning "implement bts_model_change_power\n"
LOGP(DL1C, LOGL_NOTICE, "Setting TRX output power not supported!\n");
return 0;
}