Staging: hv: Remove X2V_LINUX check

Remove preprocessor check for X2V_LINUX in osd.c

Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Bill Pemberton 2009-07-27 16:47:30 -04:00 committed by Greg Kroah-Hartman
parent dfe8b2d9d8
commit ed39aa6ac4

View file

@ -168,15 +168,7 @@ void PageUnmapVirtualAddress(void* VirtAddr)
void *MemMapIO(unsigned long phys, unsigned long size)
{
#if X2V_LINUX
#ifdef __x86_64__
return (void*)(phys + 0xFFFF83000C000000);
#else /* i386 */
return (void*)(phys + 0xfb000000);
#endif
#else
return (void*)GetVirtualAddress(phys); /* return ioremap_nocache(phys, size); */
#endif
}
void MemUnmapIO(void *virt)