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

Commit abd9c842 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

parents 9bd3729e 6067c9e7
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();
}