mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
Build fix for non-i386 and non-amd64 platforms.
Sponsored by: Mellanox Technologies
This commit is contained in:
parent
5e74264452
commit
63ec90e212
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=289830
@ -663,7 +663,11 @@ _ioremap_attr(vm_paddr_t phys_addr, unsigned long size, int attr)
|
||||
{
|
||||
void *addr;
|
||||
|
||||
#if defined(__i386__) || defined(__amd64__)
|
||||
addr = pmap_mapdev_attr(phys_addr, size, attr);
|
||||
#else
|
||||
addr = NULL;
|
||||
#endif
|
||||
if (addr == NULL)
|
||||
return (NULL);
|
||||
vmmap_add(addr, size);
|
||||
@ -679,7 +683,9 @@ iounmap(void *addr)
|
||||
vmmap = vmmap_remove(addr);
|
||||
if (vmmap == NULL)
|
||||
return;
|
||||
#if defined(__i386__) || defined(__amd64__)
|
||||
pmap_unmapdev((vm_offset_t)addr, vmmap->vm_size);
|
||||
#endif
|
||||
kfree(vmmap);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user