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>
 #include <linux/iommu-common.h>
 #include <linux/dma-mapping.h>
 
+#ifndef        DMA_ERROR_CODE
+#define        DMA_ERROR_CODE (~(dma_addr_t)0x0)
+#endif
+
 #define IOMMU_LARGE_ALLOC      15
 
 /*
                boundary_size = ALIGN(dma_get_seg_boundary(dev) + 1,
                                      1 << iommu->page_table_shift);
        else
-               boundary_size = ALIGN(1UL << 32, 1 << iommu->page_table_shift);
+               boundary_size = ALIGN(1ULL << 32, 1 << iommu->page_table_shift);
 
        shift = iommu->page_table_map_base >> iommu->page_table_shift;
        boundary_size = boundary_size >> iommu->page_table_shift;