aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-11-18 09:20:22 +0100
committerHarald Welte <laforge@gnumonks.org>2009-11-18 09:20:22 +0100
commit61a83b2aec48648921472360a2e58c1b7e6310e2 (patch)
treec46fd9a2c92a74f4966cf23594df1a53ad9aa1bd /openbsc
parent986c3d76db7795e565d0a7be5402d4bfe5e1ba93 (diff)
max_power_limit: the limit is 24 dB !
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/vty_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/vty_interface.c b/openbsc/src/vty_interface.c
index 894146b6f..f1e35e882 100644
--- a/openbsc/src/vty_interface.c
+++ b/openbsc/src/vty_interface.c
@@ -1101,7 +1101,7 @@ DEFUN(cfg_trx_max_power_red,
{
int maxpwr_r = atoi(argv[0]);
struct gsm_bts_trx *trx = vty->index;
- int upper_limit = 12; /* default 12.21 max power red. */
+ int upper_limit = 24; /* default 12.21 max power red. */
/* FIXME: check if our BTS type supports more than 12 */
if (maxpwr_r < 0 || maxpwr_r > upper_limit) {