arch: x86_64: Correct sys_read64 return type
It does make sense to use uint64_t as a return type. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
parent
0f4fc9943c
commit
52387c13b7
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ static ALWAYS_INLINE void sys_write64(uint64_t data, mm_reg_t addr)
|
|||
: "memory");
|
||||
}
|
||||
|
||||
static ALWAYS_INLINE uint32_t sys_read64(mm_reg_t addr)
|
||||
static ALWAYS_INLINE uint64_t sys_read64(mm_reg_t addr)
|
||||
{
|
||||
uint64_t ret;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue