Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.16 12 lines 454 B view raw
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