summaryrefslogtreecommitdiff
path: root/cesar/test_general
diff options
context:
space:
mode:
authorschodet2010-04-19 13:18:51 +0000
committerschodet2010-04-19 13:18:51 +0000
commitb181dc1bc001f6163180c4786baed9a89ae31e61 (patch)
treeb39194b8755b6f98d04314512a9e9f8b9b156677 /cesar/test_general
parent505f4ad9eb1a4130b63ec6ab31496a2a295b2edb (diff)
cesar: remove context parameter from phy_date and phy_sysdate, refs #1415
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@6931 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/test_general')
-rw-r--r--cesar/test_general/dataplane/src/test_dataplane.c4
-rw-r--r--cesar/test_general/maximus/integration/cl-sar-pbproc/src/station.c2
-rw-r--r--cesar/test_general/maximus/integration/hle-cl-sar-pbproc/src/station.c2
-rw-r--r--cesar/test_general/maximus/integration/interface-dp/src/station.c2
-rw-r--r--cesar/test_general/maximus/integration/ipmbox-hle-cl-sar-pbproc/src/station.c2
-rw-r--r--cesar/test_general/maximus/integration/sar-pbproc/src/station.c2
6 files changed, 7 insertions, 7 deletions
diff --git a/cesar/test_general/dataplane/src/test_dataplane.c b/cesar/test_general/dataplane/src/test_dataplane.c
index 5219ddc8b6..fd881ba315 100644
--- a/cesar/test_general/dataplane/src/test_dataplane.c
+++ b/cesar/test_general/dataplane/src/test_dataplane.c
@@ -172,14 +172,14 @@ test_dataplane_init (test_dataplane_t *ctx)
ctx->snid = 1;
ctx->store = mac_store_init ();
ctx->pbproc = pbproc_init (&ctx->config, ctx->store);
- mac_ntb_init (pbproc_get_phy (ctx->pbproc), &ctx->config);
+ mac_ntb_init (&ctx->config);
ctx->sar = sar_init (ctx->store, ctx->pbproc, pbproc_get_ca
(ctx->pbproc), ctx->config.seed);
sar_init_measure_context (ctx->sar, ctx);
sar_init_measurement_cb (ctx->sar, ce_measurements);
ctx->cl = cl_init (ctx->store, ctx->sar, &ctx->config);
ctx->hle = hle_init (ctx->cl);
- ctx->hal_timer = hal_timer_init (pbproc_get_phy (ctx->pbproc));
+ ctx->hal_timer = hal_timer_init ();
/* Fcall. */
fcall_ctx_t *fcall;
#if CONFIG_FCALL_MME
diff --git a/cesar/test_general/maximus/integration/cl-sar-pbproc/src/station.c b/cesar/test_general/maximus/integration/cl-sar-pbproc/src/station.c
index 57648d5b5a..abefef5c6c 100644
--- a/cesar/test_general/maximus/integration/cl-sar-pbproc/src/station.c
+++ b/cesar/test_general/maximus/integration/cl-sar-pbproc/src/station.c
@@ -920,7 +920,7 @@ cesar_init (void)
station_test.mac_store);
// Initialise the mac ntb.
- mac_ntb_init (pbproc_get_phy(station_test.pbproc), &station_test.mac_config);
+ mac_ntb_init (&station_test.mac_config);
// Initialise the SAR.
station_test.sar = sar_init (station_test.mac_store, station_test.pbproc,
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 ad1f209937..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
@@ -1088,7 +1088,7 @@ cesar_init (void)
station_test.mac_store);
// Initialise the mac ntb.
- mac_ntb_init (pbproc_get_phy(station_test.pbproc), &station_test.mac_config);
+ mac_ntb_init (&station_test.mac_config);
// Initialise the SAR.
station_test.sar = sar_init (station_test.mac_store, station_test.pbproc,
diff --git a/cesar/test_general/maximus/integration/interface-dp/src/station.c b/cesar/test_general/maximus/integration/interface-dp/src/station.c
index 3d99fe0358..489566ceb8 100644
--- a/cesar/test_general/maximus/integration/interface-dp/src/station.c
+++ b/cesar/test_general/maximus/integration/interface-dp/src/station.c
@@ -489,7 +489,7 @@ cesar_init (void)
station_test.mac_store);
// Initialise the mac ntb.
- mac_ntb_init (pbproc_get_phy(station_test.pbproc), &station_test.mac_config);
+ mac_ntb_init (&station_test.mac_config);
// Initialise the SAR.
station_test.sar = sar_init (station_test.mac_store, station_test.pbproc,
diff --git a/cesar/test_general/maximus/integration/ipmbox-hle-cl-sar-pbproc/src/station.c b/cesar/test_general/maximus/integration/ipmbox-hle-cl-sar-pbproc/src/station.c
index 12150b5fc4..ff75ea559d 100644
--- a/cesar/test_general/maximus/integration/ipmbox-hle-cl-sar-pbproc/src/station.c
+++ b/cesar/test_general/maximus/integration/ipmbox-hle-cl-sar-pbproc/src/station.c
@@ -865,7 +865,7 @@ cesar_init (void)
station_test.mac_store);
// Initialise the mac ntb.
- mac_ntb_init (pbproc_get_phy(station_test.pbproc), &station_test.mac_config);
+ mac_ntb_init (&station_test.mac_config);
// Initialise the SAR.
station_test.sar = sar_init (station_test.mac_store, station_test.pbproc,
diff --git a/cesar/test_general/maximus/integration/sar-pbproc/src/station.c b/cesar/test_general/maximus/integration/sar-pbproc/src/station.c
index 9109d287e8..467b808a7b 100644
--- a/cesar/test_general/maximus/integration/sar-pbproc/src/station.c
+++ b/cesar/test_general/maximus/integration/sar-pbproc/src/station.c
@@ -917,7 +917,7 @@ cesar_init (void)
station_test.mac_store);
// Initialise the mac ntb.
- mac_ntb_init (pbproc_get_phy(station_test.pbproc), &station_test.mac_config);
+ mac_ntb_init (&station_test.mac_config);
// Initialise the SAR.
station_test.sar = sar_init (station_test.mac_store, station_test.pbproc,