From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from tx2outboundpool.messaging.microsoft.com (tx2ehsobe003.messaging.microsoft.com [65.55.88.13]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client CN "mail.global.frontbridge.com", Issuer "MSIT Machine Auth CA 2" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 2B0252C0297 for ; Thu, 19 Sep 2013 17:37:29 +1000 (EST) From: Bharat Bhushan To: , , , , , , , , , Subject: [PATCH 5/7] iommu: supress loff_t compilation error on powerpc Date: Thu, 19 Sep 2013 12:59:21 +0530 Message-ID: <1379575763-2091-6-git-send-email-Bharat.Bhushan@freescale.com> In-Reply-To: <1379575763-2091-1-git-send-email-Bharat.Bhushan@freescale.com> References: <1379575763-2091-1-git-send-email-Bharat.Bhushan@freescale.com> MIME-Version: 1.0 Content-Type: text/plain Cc: Bharat Bhushan List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Signed-off-by: Bharat Bhushan --- drivers/vfio/pci/vfio_pci_rdwr.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/vfio/pci/vfio_pci_rdwr.c b/drivers/vfio/pci/vfio_pci_rdwr.c index 210db24..8a8156a 100644 --- a/drivers/vfio/pci/vfio_pci_rdwr.c +++ b/drivers/vfio/pci/vfio_pci_rdwr.c @@ -181,7 +181,8 @@ ssize_t vfio_pci_vga_rw(struct vfio_pci_device *vdev, char __user *buf, size_t count, loff_t *ppos, bool iswrite) { int ret; - loff_t off, pos = *ppos & VFIO_PCI_OFFSET_MASK; + loff_t off; + u64 pos = (u64 )(*ppos & VFIO_PCI_OFFSET_MASK); void __iomem *iomem = NULL; unsigned int rsrc; bool is_ioport; -- 1.7.0.4