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

Commit 0774f2b5 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 am: fa9af8de

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

Change-Id: Ifa68d0fa26edc55e420b2106445f9d6e2426f9d7
parents f28bd6f6 fa9af8de
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));
        }
    }