aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSowmini Varadhan <sowmini.varadhan@oracle.com>2015-04-18 15:33:55 -0400
committerDavid S. Miller <davem@davemloft.net>2015-04-18 15:34:50 -0400
commit2f0c0fdc085c0d415457a1c52344f72e12c4cec6 (patch)
tree2567af96358ff14960a686df6e253244dcf3e99d /lib
parent0ae53ed15d9b87b883b593a9884957cfa4fc2480 (diff)
iommu-common: Fix PARISC compile-time warnings
Fixes warnings due to - no DMA_ERROR_CODE on PARISC, - sizeof (unsigned long) == 4 bytes on PARISC. Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/iommu-common.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/iommu-common.c b/lib/iommu-common.c
index b99f1d744a8d..a1a517cba7ec 100644
--- a/lib/iommu-common.c
+++ b/lib/iommu-common.c
@@ -11,6 +11,10 @@
11#include <linux/dma-mapping.h> 11#include <linux/dma-mapping.h>
12#include <linux/hash.h> 12#include <linux/hash.h>
13 13
14#ifndef DMA_ERROR_CODE
15#define DMA_ERROR_CODE (~(dma_addr_t)0x0)
16#endif
17
14unsigned long iommu_large_alloc = 15; 18unsigned long iommu_large_alloc = 15;
15 19
16static DEFINE_PER_CPU(unsigned int, iommu_pool_hash); 20static DEFINE_PER_CPU(unsigned int, iommu_pool_hash);
@@ -171,7 +175,7 @@ unsigned long iommu_tbl_range_alloc(struct device *dev,
171 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1, 175 boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
172 1 << iommu->table_shift); 176 1 << iommu->table_shift);
173 else 177 else
174 boundary_size = ALIGN(1UL << 32, 1 << iommu->table_shift); 178 boundary_size = ALIGN(1ULL << 32, 1 << iommu->table_shift);
175 179
176 boundary_size = boundary_size >> iommu->table_shift; 180 boundary_size = boundary_size >> iommu->table_shift;
177 /* 181 /*