aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--applications/driver_unit_tests/command_stream.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/applications/driver_unit_tests/command_stream.cpp b/applications/driver_unit_tests/command_stream.cpp
index a2cb63e..6ec8cba 100644
--- a/applications/driver_unit_tests/command_stream.cpp
+++ b/applications/driver_unit_tests/command_stream.cpp
@@ -100,14 +100,9 @@ CommandStream::CommandStream(const DataPointer &_commandStream,
const BasePointers &_basePointers,
const PmuEvents &_pmuEvents) :
drv(ethosu_reserve_driver()),
- commandStream(_commandStream), basePointers(_basePointers), pmu(drv, _pmuEvents) {
-
- // Use simplified driver setup
- ethosu_set_power_mode(drv, true);
-}
+ commandStream(_commandStream), basePointers(_basePointers), pmu(drv, _pmuEvents) {}
CommandStream::~CommandStream() {
- ethosu_set_power_mode(drv, false);
ethosu_release_driver(drv);
}