Lines Matching refs:lowest
408 unsigned long lowest, highest; in __pci_mmap_make_offset_bus() local
410 lowest = ~0UL; highest = 0UL; in __pci_mmap_make_offset_bus()
413 lowest = p->pbm_A.io_space.start; in __pci_mmap_make_offset_bus()
417 if (lowest > p->pbm_B.io_space.start) in __pci_mmap_make_offset_bus()
418 lowest = p->pbm_B.io_space.start; in __pci_mmap_make_offset_bus()
422 space_size = highest - lowest; in __pci_mmap_make_offset_bus()
425 lowest = p->pbm_A.mem_space.start; in __pci_mmap_make_offset_bus()
429 if (lowest > p->pbm_B.mem_space.start) in __pci_mmap_make_offset_bus()
430 lowest = p->pbm_B.mem_space.start; in __pci_mmap_make_offset_bus()
434 space_size = highest - lowest; in __pci_mmap_make_offset_bus()
455 unsigned long lowest = ~0UL; in __pci_mmap_make_offset_bus() local
459 lowest = p->pbm_A.io_space.start; in __pci_mmap_make_offset_bus()
461 lowest > p->pbm_B.io_space.start) in __pci_mmap_make_offset_bus()
462 lowest = p->pbm_B.io_space.start; in __pci_mmap_make_offset_bus()
465 lowest = p->pbm_A.mem_space.start; in __pci_mmap_make_offset_bus()
467 lowest > p->pbm_B.mem_space.start) in __pci_mmap_make_offset_bus()
468 lowest = p->pbm_B.mem_space.start; in __pci_mmap_make_offset_bus()
470 vma->vm_pgoff = (lowest + user_offset) >> PAGE_SHIFT; in __pci_mmap_make_offset_bus()