diff options
author | Sowmini Varadhan <sowmini.varadhan@oracle.com> | 2015-04-19 13:13:30 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-20 14:09:55 -0400 |
commit | b0cc836d306c12462a60e72aae8f6d2318f10817 (patch) | |
tree | b3430ab189017333ebea55976b6f858fffa22634 /lib | |
parent | 64fb1d0e975e92e012802d371e417266d6531676 (diff) |
iommu-common: fix x86_64 compiler warnings
Declare iommu_large_alloc as static. Remove extern definition for
iommu_tbl_pool_init().
Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/iommu-common.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/iommu-common.c b/lib/iommu-common.c index a1a517cba7ec..a9a53f566237 100644 --- a/lib/iommu-common.c +++ b/lib/iommu-common.c | |||
@@ -15,7 +15,7 @@ | |||
15 | #define DMA_ERROR_CODE (~(dma_addr_t)0x0) | 15 | #define DMA_ERROR_CODE (~(dma_addr_t)0x0) |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | unsigned long iommu_large_alloc = 15; | 18 | static unsigned long iommu_large_alloc = 15; |
19 | 19 | ||
20 | static DEFINE_PER_CPU(unsigned int, iommu_pool_hash); | 20 | static DEFINE_PER_CPU(unsigned int, iommu_pool_hash); |
21 | 21 | ||
@@ -53,12 +53,12 @@ static void setup_iommu_pool_hash(void) | |||
53 | * the top 1/4 of the table will be set aside for pool allocations | 53 | * the top 1/4 of the table will be set aside for pool allocations |
54 | * of more than iommu_large_alloc pages. | 54 | * of more than iommu_large_alloc pages. |
55 | */ | 55 | */ |
56 | extern void iommu_tbl_pool_init(struct iommu_map_table *iommu, | 56 | void iommu_tbl_pool_init(struct iommu_map_table *iommu, |
57 | unsigned long num_entries, | 57 | unsigned long num_entries, |
58 | u32 table_shift, | 58 | u32 table_shift, |
59 | void (*lazy_flush)(struct iommu_map_table *), | 59 | void (*lazy_flush)(struct iommu_map_table *), |
60 | bool large_pool, u32 npools, | 60 | bool large_pool, u32 npools, |
61 | bool skip_span_boundary_check) | 61 | bool skip_span_boundary_check) |
62 | { | 62 | { |
63 | unsigned int start, i; | 63 | unsigned int start, i; |
64 | struct iommu_pool *p = &(iommu->large_pool); | 64 | struct iommu_pool *p = &(iommu->large_pool); |