Lines Matching refs:addr
171 dma_addr_t addr = sg_dma_address(scatter_list) + offset;
174 if (addr == 0)
177 WARN_ON((u64)addr >> 32);
178 if ((u64)addr >> 32)
183 d->pci_l = addr & 0xffffffff;
184 /* If dma_addr_t is 32 bits, then addr >> 32 is actually the
185 equivalent of addr >> 0 in gcc. So must cast to u64. */
186 d->pci_h = (u64)addr >> 32;
208 addr += d->bytes;
216 d->pci_l = addr & 0xffffffff;
217 /* If dma_addr_t is 32 bits, then addr >> 32
218 * is actually the equivalent of addr >> 0 in
220 d->pci_h = (u64)addr >> 32;