summaryrefslogtreecommitdiff
path: root/cesar/ce
diff options
context:
space:
mode:
authordufour2009-09-16 13:03:01 +0000
committerdufour2009-09-16 13:03:01 +0000
commitdd0562839fca6e2dd074afc2dca8969d92d1738b (patch)
tree3586ea0c1be720d4a7ebcdb0b01927d4a9337e18 /cesar/ce
parent5e169be9068368d724027dd3f6b797c1dbfc8797 (diff)
* mac/common, ce/rx (closes #550, see #387):
- add test function to ensure accessors is working, - fix a bug in the clean tone map function, - fix some function names. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@5578 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/ce')
-rw-r--r--cesar/ce/rx/bitloading/src/transition.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cesar/ce/rx/bitloading/src/transition.c b/cesar/ce/rx/bitloading/src/transition.c
index fd4dea51d0..ec337cba81 100644
--- a/cesar/ce/rx/bitloading/src/transition.c
+++ b/cesar/ce/rx/bitloading/src/transition.c
@@ -45,7 +45,7 @@ ce_rx_bl__IDLE__channel_data_received (ce_rx_t *ce_rx, sta_t *sta,
ce_rx_bl_initial_opitmized_iterative
(&ce_rx->mac_config->tonemask_info, &sta->ce_rx_bt);
/* Set it. */
- u8 tmi = tonemap_set_first_free_tmi (sta->rx_tonemaps, initial_tm);
+ u8 tmi = tonemaps_set_first_free_tmi (sta->rx_tonemaps, initial_tm);
/* This assert is required because this is the first time we ever
* set a tone map in the life of this STA. So we MUST have an
* empty tone map index available! */
@@ -89,7 +89,7 @@ ce_rx_bl__INITIAL__channel_data_received (ce_rx_t *ce_rx, sta_t *sta,
ce_rx_bl_initial_opitmized_iterative
(&ce_rx->mac_config->tonemask_info, &sta->ce_rx_bt);
/* Set it. */
- u8 tmi = tonemap_set_first_free_tmi (sta->rx_tonemaps, initial_tm);
+ u8 tmi = tonemaps_set_first_free_tmi (sta->rx_tonemaps, initial_tm);
/* This assert is required because this is the first time we ever
* set a tone map in the life of this STA. So we MUST have an
* empty tone map index available! */