24 lines
761 B
Plaintext
24 lines
761 B
Plaintext
|
From: Jeff Mahoney <jeffm@suse.com>
|
||
|
Subject: tioca: Fix assignment from incompatible pointer warnings
|
||
|
Patch-mainline: not yet
|
||
|
|
||
|
The prototype for sn_pci_provider->{dma_map,dma_map_consistent} expects
|
||
|
an unsigned long instead of a u64.
|
||
|
|
||
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
||
|
---
|
||
|
arch/ia64/sn/pci/tioca_provider.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/arch/ia64/sn/pci/tioca_provider.c
|
||
|
+++ b/arch/ia64/sn/pci/tioca_provider.c
|
||
|
@@ -508,7 +508,7 @@ tioca_dma_unmap(struct pci_dev *pdev, dm
|
||
|
* use the GART mapped mode.
|
||
|
*/
|
||
|
static u64
|
||
|
-tioca_dma_map(struct pci_dev *pdev, u64 paddr, size_t byte_count, int dma_flags)
|
||
|
+tioca_dma_map(struct pci_dev *pdev, unsigned long paddr, size_t byte_count, int dma_flags)
|
||
|
{
|
||
|
u64 mapaddr;
|
||
|
|