]> asedeno.scripts.mit.edu Git - linux.git/blob - include/linux/pci-dma.h
Merge remote-tracking branches 'asoc/topic/nau8824', 'asoc/topic/nau8825' and 'asoc...
[linux.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