]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
lib/powerpc: addrmap_phys_to_virt() should return a pointer
authorTimur Tabi <timur@freescale.com>
Fri, 4 May 2012 12:21:30 +0000 (12:21 +0000)
committerAndy Fleming <afleming@freescale.com>
Fri, 6 Jul 2012 22:30:32 +0000 (17:30 -0500)
commit7b6e80538b919c814c94ce8887cec7b892f98a71
tree410490ffcaea818381585e1ec6136dca1e917186
parent84e34b6572d4368784e1e1e732f30595fa1f918e
lib/powerpc: addrmap_phys_to_virt() should return a pointer

addrmap_phys_to_virt() converts a physical address (phys_addr_t) to a
virtual address, so it should return a pointer instead of an unsigned long.
Its counterpart, addrmap_virt_to_phys(), takes a pointer, so now they're
orthogonal.

The only caller of addrmap_phys_to_virt() converts the return value to
a pointer anyway.

Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
arch/powerpc/include/asm/io.h
include/addr_map.h
lib/addr_map.c