Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 105da222 authored by Yixuan Wang's avatar Yixuan Wang
Browse files

Remove early break for sub-HAL initialization failure

Bug: 212420575
Test: none
Change-Id: I38099a4edbdeffe99ae2d91fc9dc518c9da98b13
parent 6278c2d2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -250,8 +250,8 @@ Return<Result> HalProxy::initializeCommon(
        Result currRes = mSubHalList[i]->initialize(this, this, i);
        if (currRes != Result::OK) {
            result = currRes;
            ALOGE("Subhal '%s' failed to initialize.", mSubHalList[i]->getName().c_str());
            break;
            ALOGE("Subhal '%s' failed to initialize with reason %" PRId32 ".",
                  mSubHalList[i]->getName().c_str(), static_cast<int32_t>(currRes));
        }
    }