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>
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 */