Lines Matching defs:size
63 void __iomem *sun3_ioremap(unsigned long phys, unsigned long size,
70 if(!size)
77 size += offset;
78 size = PAGE_ALIGN(size);
79 if((area = get_vm_area(size, VM_IOREMAP)) == NULL)
83 pr_info("ioremap: got virt %p size %lx(%lx)\n", area->addr, size,
84 area->size);
87 pages = size / PAGE_SIZE;
111 void __iomem *__ioremap(unsigned long phys, unsigned long size, int cache)
114 return sun3_ioremap(phys, size, SUN3_PAGE_TYPE_IO);