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

Commit 43b0306d authored by Laura Abbott's avatar Laura Abbott Committed by Giulio Cervera
Browse files

binder: Get rid of old flag

MAP_LOCKED_MAP_POPULATE is an outdated flag that is not used
anymore. Get rid of this flag in MemoryHeapIon
parent 7c36193f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -89,8 +89,7 @@ status_t MemoryHeapIon::mapIonFd(int fd, size_t size, unsigned long memory_type,
    }

    if ((uflags & DONT_MAP_LOCALLY) == 0) {
        int flags = (uflags & MAP_LOCKED_MAP_POPULATE) ?
                    MAP_POPULATE|MAP_LOCKED : 0;
        int flags = 0;

        fd_data.handle = data.handle;