summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/parisc/ccio-dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c
index 8d2fc84119c6..24a68fb7b2f9 100644
--- a/drivers/parisc/ccio-dma.c
+++ b/drivers/parisc/ccio-dma.c
@@ -710,8 +710,8 @@ ccio_dma_supported(struct device *dev, u64 mask)
710 return 0; 710 return 0;
711 } 711 }
712 712
713 /* only support 32-bit devices (ie PCI/GSC) */ 713 /* only support 32-bit or better devices (ie PCI/GSC) */
714 return (int)(mask == 0xffffffffUL); 714 return (int)(mask >= 0xffffffffUL);
715} 715}
716 716
717/** 717/**