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

Commit 466f543c authored by Bernie Innocenti's avatar Bernie Innocenti Committed by android-build-merger
Browse files

Merge "Relax APF version check in ApfGenerator" am: 51dab0ed

am: 45dd4b79

Change-Id: If32b43fc217e5966fd6620d5c103c70883990842
parents f04afa25 45dd4b79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -367,7 +367,7 @@ public class ApfGenerator {
     */
    public boolean setApfVersion(int version) {
        // This version number syncs up with APF_VERSION in hardware/google/apf/apf_interpreter.h
        return version == 2;
        return version >= 2;
    }

    private void addInstruction(Instruction instruction) {