summaryrefslogtreecommitdiff
path: root/cesar/test_general
diff options
context:
space:
mode:
authorschodet2010-05-21 14:19:17 +0000
committerschodet2010-05-21 14:19:17 +0000
commit6de0800be1e295c6072c282a6b0801960467bc24 (patch)
treeef13d40f731d4402a86dd9b3980582bcb94e7f00 /cesar/test_general
parent507f4868c57bd4c2f4fe91681d3a81b0186dfa29 (diff)
cesar/hal/hle, cesar/hle: remove ipmbox_tx_try, refs #1418
This revert commits r6949, r6950 and r6954. ipmbox can not overflow because the number of message is limited by the number of buffer sent and added by the Linux driver. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@7125 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/test_general')
-rw-r--r--cesar/test_general/maximus/integration/hle-cl-sar-pbproc/src/station.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/cesar/test_general/maximus/integration/hle-cl-sar-pbproc/src/station.c b/cesar/test_general/maximus/integration/hle-cl-sar-pbproc/src/station.c
index f4b2f8164e..42f95309af 100644
--- a/cesar/test_general/maximus/integration/hle-cl-sar-pbproc/src/station.c
+++ b/cesar/test_general/maximus/integration/hle-cl-sar-pbproc/src/station.c
@@ -137,7 +137,7 @@ void maximus_cp_mme_get (void *user, u8 *buffer)
* \param first_msg pointer to the first received message header
* \param length total length (in word) of messages to transmit
*/
-bool ipmbox_tx_try (ipmbox_t *ctx, u32 *first_msg, uint length)
+void ipmbox_tx (ipmbox_t *ctx, u32 *first_msg, uint length)
{
printf ("/***************************************************/\n");
printf ("/ IPMBOX RECV /\n");
@@ -168,12 +168,7 @@ bool ipmbox_tx_try (ipmbox_t *ctx, u32 *first_msg, uint length)
}
printf ("/***************************************************/\n");
- return true;
-}
-void ipmbox_tx (ipmbox_t *ctx, u32 *first_msg, uint length)
-{
- ipmbox_tx_try (ctx, first_msg, length);
}
/**