diff options
author | Yinghai Lu <yinghai.lu@sun.com> | 2007-07-21 11:11:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 21:37:12 -0400 |
commit | 0b11e1c6a604014283af70e27e0f32971407fd6d (patch) | |
tree | 60f82c3d1e1489cad6503357d06bd128160e61b0 /arch/x86_64/kernel | |
parent | 820a149705c2c2a37989554a4f4a34e3d0b0df1f (diff) |
x86_64: Calgary - change _map_single, etc to static
there function are called via dma_ops->.., so change them to static
Signed-off-by: Yinghai Lu <yinghai.lu@sun.com>
Signed-off-by: Muli Ben-Yehuda <muli@il.ibm.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64/kernel')
-rw-r--r-- | arch/x86_64/kernel/pci-calgary.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86_64/kernel/pci-calgary.c b/arch/x86_64/kernel/pci-calgary.c index fa50d6a1ce46..d10fee8c2418 100644 --- a/arch/x86_64/kernel/pci-calgary.c +++ b/arch/x86_64/kernel/pci-calgary.c | |||
@@ -429,7 +429,7 @@ static int calgary_nontranslate_map_sg(struct device* dev, | |||
429 | return nelems; | 429 | return nelems; |
430 | } | 430 | } |
431 | 431 | ||
432 | int calgary_map_sg(struct device *dev, struct scatterlist *sg, | 432 | static int calgary_map_sg(struct device *dev, struct scatterlist *sg, |
433 | int nelems, int direction) | 433 | int nelems, int direction) |
434 | { | 434 | { |
435 | struct iommu_table *tbl = find_iommu_table(dev); | 435 | struct iommu_table *tbl = find_iommu_table(dev); |
@@ -474,7 +474,7 @@ error: | |||
474 | return 0; | 474 | return 0; |
475 | } | 475 | } |
476 | 476 | ||
477 | dma_addr_t calgary_map_single(struct device *dev, void *vaddr, | 477 | static dma_addr_t calgary_map_single(struct device *dev, void *vaddr, |
478 | size_t size, int direction) | 478 | size_t size, int direction) |
479 | { | 479 | { |
480 | dma_addr_t dma_handle = bad_dma_address; | 480 | dma_addr_t dma_handle = bad_dma_address; |
@@ -493,7 +493,7 @@ dma_addr_t calgary_map_single(struct device *dev, void *vaddr, | |||
493 | return dma_handle; | 493 | return dma_handle; |
494 | } | 494 | } |
495 | 495 | ||
496 | void calgary_unmap_single(struct device *dev, dma_addr_t dma_handle, | 496 | static void calgary_unmap_single(struct device *dev, dma_addr_t dma_handle, |
497 | size_t size, int direction) | 497 | size_t size, int direction) |
498 | { | 498 | { |
499 | struct iommu_table *tbl = find_iommu_table(dev); | 499 | struct iommu_table *tbl = find_iommu_table(dev); |
@@ -506,7 +506,7 @@ void calgary_unmap_single(struct device *dev, dma_addr_t dma_handle, | |||
506 | iommu_free(tbl, dma_handle, npages); | 506 | iommu_free(tbl, dma_handle, npages); |
507 | } | 507 | } |
508 | 508 | ||
509 | void* calgary_alloc_coherent(struct device *dev, size_t size, | 509 | static void* calgary_alloc_coherent(struct device *dev, size_t size, |
510 | dma_addr_t *dma_handle, gfp_t flag) | 510 | dma_addr_t *dma_handle, gfp_t flag) |
511 | { | 511 | { |
512 | void *ret = NULL; | 512 | void *ret = NULL; |