mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Merge "Remove early break for sub-HAL initialization failure" am: 6e503b7a4e am: fa9af8de75 am: 0774f2b58e am: b222bd47a3
Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1961241 Change-Id: I4baa7f43717bbb84cdee578dcd510b97efcd5e5e
This commit is contained in:
@@ -261,8 +261,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));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user