Commit a4c2d7d9285500a9b229bb7ddc7abe0212a0dab0

Authored by Joe Perches
Committed by Ingo Molnar
1 parent 1b17fce607

include/asm-x86/swiotlb.h: checkpatch cleanups - formatting only

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 1 changed file with 14 additions and 14 deletions Side-by-side Diff

include/asm-x86/swiotlb.h
... ... @@ -8,15 +8,15 @@
8 8 extern dma_addr_t swiotlb_map_single(struct device *hwdev, void *ptr,
9 9 size_t size, int dir);
10 10 extern void *swiotlb_alloc_coherent(struct device *hwdev, size_t size,
11   - dma_addr_t *dma_handle, gfp_t flags);
  11 + dma_addr_t *dma_handle, gfp_t flags);
12 12 extern void swiotlb_unmap_single(struct device *hwdev, dma_addr_t dev_addr,
13   - size_t size, int dir);
  13 + size_t size, int dir);
14 14 extern void swiotlb_sync_single_for_cpu(struct device *hwdev,
15   - dma_addr_t dev_addr,
16   - size_t size, int dir);
  15 + dma_addr_t dev_addr,
  16 + size_t size, int dir);
17 17 extern void swiotlb_sync_single_for_device(struct device *hwdev,
18   - dma_addr_t dev_addr,
19   - size_t size, int dir);
  18 + dma_addr_t dev_addr,
  19 + size_t size, int dir);
20 20 extern void swiotlb_sync_single_range_for_cpu(struct device *hwdev,
21 21 dma_addr_t dev_addr,
22 22 unsigned long offset,
23 23  
24 24  
25 25  
26 26  
... ... @@ -26,18 +26,18 @@
26 26 unsigned long offset,
27 27 size_t size, int dir);
28 28 extern void swiotlb_sync_sg_for_cpu(struct device *hwdev,
29   - struct scatterlist *sg, int nelems,
30   - int dir);
  29 + struct scatterlist *sg, int nelems,
  30 + int dir);
31 31 extern void swiotlb_sync_sg_for_device(struct device *hwdev,
32   - struct scatterlist *sg, int nelems,
33   - int dir);
  32 + struct scatterlist *sg, int nelems,
  33 + int dir);
34 34 extern int swiotlb_map_sg(struct device *hwdev, struct scatterlist *sg,
35   - int nents, int direction);
  35 + int nents, int direction);
36 36 extern void swiotlb_unmap_sg(struct device *hwdev, struct scatterlist *sg,
37   - int nents, int direction);
  37 + int nents, int direction);
38 38 extern int swiotlb_dma_mapping_error(dma_addr_t dma_addr);
39   -extern void swiotlb_free_coherent (struct device *hwdev, size_t size,
40   - void *vaddr, dma_addr_t dma_handle);
  39 +extern void swiotlb_free_coherent(struct device *hwdev, size_t size,
  40 + void *vaddr, dma_addr_t dma_handle);
41 41 extern int swiotlb_dma_supported(struct device *hwdev, u64 mask);
42 42 extern void swiotlb_init(void);
43 43