summaryrefslogtreecommitdiff
path: root/cesar/bsu/bsu.h
diff options
context:
space:
mode:
authorlaranjeiro2010-05-17 09:30:30 +0000
committerlaranjeiro2010-05-17 09:30:30 +0000
commit7f359021ac816d07b2d4c942c7871b9016366f49 (patch)
tree821beebc973777011ee643831764dd347def2397 /cesar/bsu/bsu.h
parentd861f4338f507bb3471ed881f42d00763f893ab3 (diff)
cesar/{bsu,bsu/aclf}: return bsu_aclf_t context on bsu_aclf_init
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@7031 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/bsu/bsu.h')
-rw-r--r--cesar/bsu/bsu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/cesar/bsu/bsu.h b/cesar/bsu/bsu.h
index cd7b683674..98525f61ad 100644
--- a/cesar/bsu/bsu.h
+++ b/cesar/bsu/bsu.h
@@ -43,6 +43,7 @@ BEGIN_DECLS
/**
* Initialise the module.
+ * \param aclf the ACLF module context.
* \param mac_config the mac config structure pointer.
* \param phy the PHY context.
* \param mac_store the mac store database.
@@ -55,8 +56,8 @@ BEGIN_DECLS
* \return the context.
*/
bsu_t *
-bsu_init (mac_config_t *mac_config, phy_t *phy, mac_store_t *mac_store,
- ca_t *ca, sar_t *sar, hal_timer_t *timer,
+bsu_init (bsu_aclf_t *aclf, mac_config_t *mac_config, phy_t *phy,
+ mac_store_t *mac_store, ca_t *ca, sar_t *sar, hal_timer_t *timer,
bsu_beacon_processed_t cb, void *cb_ud);
/**