summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut2011-05-23 23:15:09 +0200
committerSylvain Munaut2011-05-29 19:51:54 +0200
commit16ec2358a014f290be47e87e3489f98769681979 (patch)
treecf1ba6ad203464fce9d959ebfbcfa0d1177c38a0
parentfw/trf6151: Use a #define to enable/disable out-of-spec warnings (diff)
downloadosmocom-16ec2358a014f290be47e87e3489f98769681979.tar.gz
osmocom-16ec2358a014f290be47e87e3489f98769681979.tar.xz
osmocom-16ec2358a014f290be47e87e3489f98769681979.zip
fw/rffe/compal: Add support for 850 band
The HW switch supports it. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--src/target/firmware/board/compal/rffe_dualband.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/firmware/board/compal/rffe_dualband.c b/src/target/firmware/board/compal/rffe_dualband.c
index d2d517d..152f31b 100644
--- a/src/target/firmware/board/compal/rffe_dualband.c
+++ b/src/target/firmware/board/compal/rffe_dualband.c
@@ -35,9 +35,9 @@ void rffe_mode(enum gsm_band band, int tx)
/* Then we selectively set the bits on, if required */
if (tx) {
tspact &= ~TRENA;
- if (band == GSM_BAND_900)
+ if (band == GSM_BAND_850 || band == GSM_BAND_900)
tspact &= ~GSM_TXEN;
- tspact |= PA_ENABLE; /* Dieter: TODO */
+ tspact |= PA_ENABLE;
}
#endif /* TRANSMIT_SUPPORT */