]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
iommu-common: fix x86_64 compiler warnings
authorSowmini Varadhan <sowmini.varadhan@oracle.com>
Sun, 19 Apr 2015 17:13:30 +0000 (13:13 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 20 Apr 2015 18:09:55 +0000 (14:09 -0400)
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>
lib/iommu-common.c

index a1a517cba7ec3bea6140957d2e549317717dedcf..a9a53f5662370489f86da301b8e8b8b0f141c995 100644 (file)
@@ -15,7 +15,7 @@
 #define        DMA_ERROR_CODE (~(dma_addr_t)0x0)
 #endif
 
-unsigned long iommu_large_alloc = 15;
+static unsigned long iommu_large_alloc = 15;
 
 static DEFINE_PER_CPU(unsigned int, iommu_pool_hash);
 
@@ -53,12 +53,12 @@ static void setup_iommu_pool_hash(void)
  * the top 1/4 of the table will be set aside for pool allocations
  * of more than iommu_large_alloc pages.
  */
-extern void iommu_tbl_pool_init(struct iommu_map_table *iommu,
-                               unsigned long num_entries,
-                               u32 table_shift,
-                               void (*lazy_flush)(struct iommu_map_table *),
-                               bool large_pool, u32 npools,
-                               bool skip_span_boundary_check)
+void iommu_tbl_pool_init(struct iommu_map_table *iommu,
+                        unsigned long num_entries,
+                        u32 table_shift,
+                        void (*lazy_flush)(struct iommu_map_table *),
+                        bool large_pool, u32 npools,
+                        bool skip_span_boundary_check)
 {
        unsigned int start, i;
        struct iommu_pool *p = &(iommu->large_pool);