summaryrefslogtreecommitdiff
path: root/cesar/cp
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/cp')
-rw-r--r--cesar/cp/av/beacon/test/utest/src/stubs.c4
-rw-r--r--cesar/cp/av/beacon/test/utest2/src/pbproc_stub.c5
-rw-r--r--cesar/cp/beacon/src/beacon.c2
3 files changed, 10 insertions, 1 deletions
diff --git a/cesar/cp/av/beacon/test/utest/src/stubs.c b/cesar/cp/av/beacon/test/utest/src/stubs.c
index bfe045ed8f..558896f4a3 100644
--- a/cesar/cp/av/beacon/test/utest/src/stubs.c
+++ b/cesar/cp/av/beacon/test/utest/src/stubs.c
@@ -97,3 +97,7 @@ pbproc_spoc_update (pbproc_t *pbproc, bool sync, s32 rho_q30)
{
}
+void
+pbproc_spoc_reset (pbproc_t *pbproc)
+{
+}
diff --git a/cesar/cp/av/beacon/test/utest2/src/pbproc_stub.c b/cesar/cp/av/beacon/test/utest2/src/pbproc_stub.c
index 51c4195a98..5e049a5f4b 100644
--- a/cesar/cp/av/beacon/test/utest2/src/pbproc_stub.c
+++ b/cesar/cp/av/beacon/test/utest2/src/pbproc_stub.c
@@ -19,3 +19,8 @@ void
pbproc_spoc_update (pbproc_t *pbproc, bool sync, s32 rho_q30)
{
}
+
+void
+pbproc_spoc_reset (pbproc_t *pbproc)
+{
+}
diff --git a/cesar/cp/beacon/src/beacon.c b/cesar/cp/beacon/src/beacon.c
index 7c9cd4a55d..65dddc6afc 100644
--- a/cesar/cp/beacon/src/beacon.c
+++ b/cesar/cp/beacon/src/beacon.c
@@ -896,7 +896,7 @@ cp_beacon_process_untracked_avln (cp_t *ctx)
/* Reset SPOC. */
ctx->beacon.spoc_updated = false;
if (ctx->beacon.spoc_update_interval_ms != 0)
- pbproc_spoc_update (ctx->pbproc, false, 0);
+ pbproc_spoc_reset (ctx->pbproc);
/* Inform BSU. */
bsu_untrack_avln (ctx->bsu);
}