Skip to content

Commit

Permalink
GraphicBufferManager: getphys: fixed type of paddr
Browse files Browse the repository at this point in the history
Change-Id: I63f6dd4d36a589f4bb718d71641f23b995ab3903
  • Loading branch information
codeworkx authored and Faryaab committed Apr 7, 2012
1 parent fbfbdcd commit f8a7455
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/ui/GraphicBufferMapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class GraphicBufferMapper : public Singleton<GraphicBufferMapper>
status_t unlock(buffer_handle_t handle);

#ifdef EXYNOS4210_ENHANCEMENTS
status_t getphys(buffer_handle_t handle, int *paddr);
status_t getphys(buffer_handle_t handle, void** paddr);
#endif

// dumps information about the mapping of this handle
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/GraphicBufferMapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ status_t GraphicBufferMapper::unlock(buffer_handle_t handle)
}

#ifdef EXYNOS4210_ENHANCEMENTS
status_t GraphicBufferMapper::getphys(buffer_handle_t handle, int *paddr)
status_t GraphicBufferMapper::getphys(buffer_handle_t handle, void** paddr)
{
status_t err;

Expand Down

0 comments on commit f8a7455

Please sign in to comment.