summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2012-03-29 21:43:25 +0200
committerSylvain Munaut <tnt@246tNt.com>2012-03-29 21:43:25 +0200
commit143abe661a50948f58c6a917f0231cde068db2a7 (patch)
tree756fea0eb2b6f6c1ea1861d4cf5186360c6e0678
parentce60deff7b984aa031f3c11ee75092f9bfe247ee (diff)
fw/prim_tch: Fix regression introduced in f04f53d3b7909cc77d1b451bc8596c4d69ce8172
Thanks to Andreas for spotting this. Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--src/target/firmware/layer1/prim_tch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/firmware/layer1/prim_tch.c b/src/target/firmware/layer1/prim_tch.c
index 292ca103..a26c58ea 100644
--- a/src/target/firmware/layer1/prim_tch.c
+++ b/src/target/firmware/layer1/prim_tch.c
@@ -738,7 +738,7 @@ static int l1s_tch_a_cmd(__unused uint8_t p1, __unused uint8_t p2, uint16_t p3)
l1s_rx_win_ctrl(arfcn, L1_RXWIN_NB, 0);
dsp_load_tx_task(TCHA_DSP_TASK, 0, tsc); /* burst_id unused for TCHA */
- l1s_tx_win_ctrl(arfcn, L1_TXWIN_NB | ARFCN_UPLINK, 0, 3);
+ l1s_tx_win_ctrl(arfcn | ARFCN_UPLINK, L1_TXWIN_NB, 0, 3);
return 0;
}