From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161055AbbBCRyW (ORCPT ); Tue, 3 Feb 2015 12:54:22 -0500 Received: from 8bytes.org ([81.169.241.247]:52878 "EHLO theia.8bytes.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965956AbbBCRyS (ORCPT ); Tue, 3 Feb 2015 12:54:18 -0500 Date: Tue, 3 Feb 2015 18:54:15 +0100 From: "joro@8bytes.org" To: Will Deacon Cc: Arnd Bergmann , Joerg Roedel , Mitchel Humpherys , "linux-arm-kernel@lists.infradead.org" , "iommu@lists.linux-foundation.org" , "linux-kernel@vger.kernel.org" Subject: Re: [PATCH] iommu: arm-smmu: avoid build warning Message-ID: <20150203175415.GB29585@8bytes.org> References: <1754709.y30A9Ie4hF@wuerfel> <20150202102048.GB30699@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150202102048.GB30699@arm.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 02, 2015 at 10:20:49AM +0000, Will Deacon wrote: > On Fri, Jan 30, 2015 at 09:55:55PM +0000, Arnd Bergmann wrote: > > - reg = (iova & ~0xfff) >> 32; > > + reg = ((u64)iova & ~0xfff) >> 32; > > writel_relaxed(reg, cb_base + ARM_SMMU_CB_ATS1PR_HI); > > } > > Thanks, Arnd. > > Acked-by: Will Deacon > > Joerg, could you pick this one up directly please? I don't have any other > ARM SMMU fixes queued at the moment. Done, thanks.