libgralloc: Fix adding offset to the mapped base address

Change-Id: I16f0625af343f6a05ee54285cdca8b6a56fc511e
This commit is contained in:
Sundara Vinayagam 2017-12-08 12:09:23 +05:30 committed by Alain Vongsouvanh
parent ef09bce3c4
commit f2e9c44d62
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.