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

Commit fa9af8de authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove early break for sub-HAL initialization failure" am: 6e503b7a

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1961241

Change-Id: I1c0fe77a180526a4a42c95e1cac8281824e95ca0
parents 644d624b 6e503b7a
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));
        }
    }