Merge tag 'platform-drivers-x86-v4.16-4' of git://git.infradead.org/linux-platform...
[sfrench/cifs-2.6.git] / include / linux / pci-dma.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_PCI_DMA_H
3 #define _LINUX_PCI_DMA_H
4
5 #define DECLARE_PCI_UNMAP_ADDR(ADDR_NAME) DEFINE_DMA_UNMAP_ADDR(ADDR_NAME);
6 #define DECLARE_PCI_UNMAP_LEN(LEN_NAME)   DEFINE_DMA_UNMAP_LEN(LEN_NAME);
7 #define pci_unmap_addr             dma_unmap_addr
8 #define pci_unmap_addr_set         dma_unmap_addr_set
9 #define pci_unmap_len              dma_unmap_len
10 #define pci_unmap_len_set          dma_unmap_len_set
11
12 #endif