[PATCH] qlogicpti: Fix compiler warnings

2016-11-23 Thread Tushar Dave
__u32 *’ This patch resolves above compiler warnings. Signed-off-by: Tushar Dave Reviewed-by: thomas tai --- drivers/scsi/qlogicpti.c | 10 ++ drivers/scsi/qlogicpti.h | 4 ++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/drivers/scsi/qlogicpti.c b/drivers/scsi/qlogic

[PATCH v2] qlogicpti: Fix compiler warnings

2016-11-23 Thread Tushar Dave
__u32 *’ For the record, qlogicpti never executes on sun4v. Therefore even though 64bit DMA is enabled on SPARC, qlogicpti continues to use legacy iommu that guarantees DMA address is always in 32bit range. This patch resolves aforementioned compiler warnings. Signed-off-by: Tushar Dave R