commit | 3c46041769adecf3ed964cbd1e6bd4324d063450 | [log] [tgz] |
---|---|---|
author | Greg Ungerer <gerg@uclinux.org> | Mon Oct 22 15:29:59 2012 +1000 |
committer | Greg Ungerer <gerg@uclinux.org> | Wed Dec 05 10:51:22 2012 +1000 |
tree | 931aed6304d6e738a7b10293aa120cccafe5d572 | |
parent | 5a4acf3eac0631c288b8abb070fdb38c21eaf787 [diff] |
m68knommu: make non-MMU page_to_virt() return a void * The page_to_virt() macro for m68knommu is currently effectively returning an int type. But the equivilent m68k macro returns a void * virtual address. Modify the non-MMU macro to return a void * as well (using the __va macro). This change will remove compiler warnings in common m68k code that use this macro. Signed-off-by: Greg Ungerer <gerg@uclinux.org>