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

Configure Feed

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

Merge branch 'stable/for-linus-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb

Pull swiotlb fix from Konrad Rzeszutek Wilk:
"Tiny little fix which just converts an function to be static. Really
tiny"

* 'stable/for-linus-4.1' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb:
swiotlb: do not export map_single function

+3 -2
+3 -2
lib/swiotlb.c
··· 537 537 * Allocates bounce buffer and returns its kernel virtual address. 538 538 */ 539 539 540 - phys_addr_t map_single(struct device *hwdev, phys_addr_t phys, size_t size, 541 - enum dma_data_direction dir) 540 + static phys_addr_t 541 + map_single(struct device *hwdev, phys_addr_t phys, size_t size, 542 + enum dma_data_direction dir) 542 543 { 543 544 dma_addr_t start_dma_addr = phys_to_dma(hwdev, io_tlb_start); 544 545