Lines Matching refs:maxlen
18 * @maxlen: max length of the memory to map
25 * @maxlen specifies the maximum length to map. If you want to get access to
31 unsigned long maxlen)
41 if (maxlen && len > maxlen)
42 len = maxlen;
57 * @maxlen: max length of the memory to map
65 * @maxlen specifies the maximum length to map. If you want to get access to
71 unsigned long maxlen)
86 if (maxlen && len > maxlen)
87 len = maxlen;
101 * @maxlen: length of the memory to map
108 * @maxlen specifies the maximum length to map. If you want to get access to
111 void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen)
113 return pci_iomap_range(dev, bar, 0, maxlen);
121 * @maxlen: length of the memory to map
129 * @maxlen specifies the maximum length to map. If you want to get access to
132 void __iomem *pci_iomap_wc(struct pci_dev *dev, int bar, unsigned long maxlen)
134 return pci_iomap_wc_range(dev, bar, 0, maxlen);