[DO NOT MERGE] msm8994: libgralloc: Fix adding offset to the mapped base address

Bug: 63662821
Change-Id: I722ed2560efd66e2e61a3054d7db7f6241e8e911
This commit is contained in:
Steve Pfetsch 2017-10-09 12:33:47 -07:00
parent d62c8a289f
commit e6ce8dd698
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ static int gralloc_map_metadata(buffer_handle_t handle) {
hnd, hnd->fd_metadata, strerror(errno));
return -errno;
}
hnd->base_metadata = uint64_t(mappedAddress) + hnd->offset_metadata;
hnd->base_metadata = uint64_t(mappedAddress);
}
return 0;
}
@ -102,7 +102,7 @@ static int gralloc_map(gralloc_module_t const* module,
return -errno;
}
hnd->base = uint64_t(mappedAddress) + hnd->offset;
hnd->base = uint64_t(mappedAddress);
} else {
// Cannot map secure buffers or framebuffers, but still need to map
// metadata for secure buffers.