summaryrefslogtreecommitdiff
path: root/tests/common
diff options
context:
space:
mode:
authorKshitij Sisodia <kshitij.sisodia@arm.com>2022-04-06 13:03:20 +0100
committerKshitij Sisodia <kshitij.sisodia@arm.com>2022-04-06 16:03:23 +0100
commit68fdd119f38c37ab28066474086b0e352d991baf (patch)
treecedb897ff9128f7d07e54c5c53ff8eb6be6b2bb1 /tests/common
parentda2ec067da418d3d80b2829b111df25bd901eb5c (diff)
downloadml-embedded-evaluation-kit-68fdd119f38c37ab28066474086b0e352d991baf.tar.gz
MLECO-3096: Removing data_acq and data_psn
Further to the HAL refactoring done in previous commits, this CR simpifies HAL by removing data_acq and data_psn "modules". The associated function pointers have been removed. Change-Id: I04c194c08dfe0aff98ce4e0f0f056bac254c137d Signed-off-by: Kshitij Sisodia <kshitij.sisodia@arm.com>
Diffstat (limited to 'tests/common')
-rw-r--r--tests/common/ProfilerTests.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/common/ProfilerTests.cc b/tests/common/ProfilerTests.cc
index 1435dde..889e2f2 100644
--- a/tests/common/ProfilerTests.cc
+++ b/tests/common/ProfilerTests.cc
@@ -26,12 +26,10 @@
TEST_CASE("Common: Test Profiler")
{
hal_platform platform;
- data_acq_module data_acq {};
- data_psn_module data_psn {};
platform_timer timer {};
/* Initialise the HAL and platform. */
- hal_init(&platform, &data_acq, &data_psn, &timer);
+ hal_init(&platform, &timer);
hal_platform_init(&platform);
/* An invalid profiler shouldn't be of much use */