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

Commit 51dab0ed authored by Bernie Innocenti's avatar Bernie Innocenti Committed by Gerrit Code Review
Browse files

Merge "Relax APF version check in ApfGenerator"

parents 8e338f7d d6bf7ffe
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) {