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

Commit eca4874d authored by Jiabin Huang's avatar Jiabin Huang Committed by Automerger Merge Worker
Browse files

Merge "AHAL: use verbose log for stub implementation." am: 6067c9e7 am: abd9c842

parents d15e8f98 abd9c842
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1251,14 +1251,14 @@ bool Module::isMmapSupported() {
}

ndk::ScopedAStatus Module::populateConnectedDevicePort(AudioPort* audioPort __unused) {
    LOG(DEBUG) << __func__ << ": do nothing and return ok";
    LOG(VERBOSE) << __func__ << ": do nothing and return ok";
    return ndk::ScopedAStatus::ok();
}

ndk::ScopedAStatus Module::checkAudioPatchEndpointsMatch(
        const std::vector<AudioPortConfig*>& sources __unused,
        const std::vector<AudioPortConfig*>& sinks __unused) {
    LOG(DEBUG) << __func__ << ": do nothing and return ok";
    LOG(VERBOSE) << __func__ << ": do nothing and return ok";
    return ndk::ScopedAStatus::ok();
}