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

Commit 16caf6b6 authored by Bernie Innocenti's avatar Bernie Innocenti Committed by Android (Google) Code Review
Browse files

Merge "Relax APF version check in ApfGenerator" into pi-dev

parents bd2c0fa8 0bc4709a
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) {