summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mobicore/daemon/Daemon/Device/Platforms/Generic/TrustZoneDevice.cpp9
-rw-r--r--mobicore/daemon/Daemon/MobiCoreDriverDaemon.cpp3
2 files changed, 0 insertions, 12 deletions
diff --git a/mobicore/daemon/Daemon/Device/Platforms/Generic/TrustZoneDevice.cpp b/mobicore/daemon/Daemon/Device/Platforms/Generic/TrustZoneDevice.cpp
index 1cc875b..d104926 100644
--- a/mobicore/daemon/Daemon/Device/Platforms/Generic/TrustZoneDevice.cpp
+++ b/mobicore/daemon/Daemon/Device/Platforms/Generic/TrustZoneDevice.cpp
@@ -61,9 +61,6 @@
#define MCI_BUFFER_SIZE (NQ_BUFFER_SIZE + MCP_BUFFER_SIZE)
//------------------------------------------------------------------------------
-MC_CHECK_VERSION(MCI, 0, 2);
-
-//------------------------------------------------------------------------------
__attribute__ ((weak)) MobiCoreDevice *getDeviceInstance(
void
)
@@ -131,12 +128,6 @@ bool TrustZoneDevice::initDevice(
}
mciBuffer = pWsmMcp->virtAddr;
- if (!checkMciVersion())
- {
- LOG_E("checkMciVersion failed");
- return false;
- }
-
// Only do a fastcall if MCI has not been reused (MC already initialized)
if (!mciReused)
{
diff --git a/mobicore/daemon/Daemon/MobiCoreDriverDaemon.cpp b/mobicore/daemon/Daemon/MobiCoreDriverDaemon.cpp
index edac844..576dc88 100644
--- a/mobicore/daemon/Daemon/MobiCoreDriverDaemon.cpp
+++ b/mobicore/daemon/Daemon/MobiCoreDriverDaemon.cpp
@@ -143,9 +143,6 @@ void MobiCoreDriverDaemon::run(
// start device (scheduler)
mobiCoreDevice->start();
- LOG_I_RELEASE("Checking version of <t-base");
- checkMobiCoreVersion(mobiCoreDevice);
-
// Load device driver if requested
if (loadDriver) {
for (unsigned int i = 0; i < drivers.size(); i++)