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

Bug: 63662821
CRs-Fixed: 2109325

Change-Id: Ib67ba670753d0f2ce41ca7168de7ab5202103a47
This commit is contained in:
Ramkumar Radhakrishnan 2017-10-11 11:47:56 -07:00 committed by Steve Pfetsch
parent e6ce8dd698
commit b7f8cc171e
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.