Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752501AbdLGURm (ORCPT ); Thu, 7 Dec 2017 15:17:42 -0500 Received: from mail.free-electrons.com ([62.4.15.54]:46913 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750828AbdLGURl (ORCPT ); Thu, 7 Dec 2017 15:17:41 -0500 Date: Thu, 7 Dec 2017 21:17:28 +0100 From: Boris Brezillon To: Masahiro Yamada Cc: linux-mtd@lists.infradead.org, Cyrille Pitchen , linux-kernel@vger.kernel.org, Marek Vasut , Brian Norris , Richard Weinberger , David Woodhouse Subject: Re: [PATCH] mtd: nand: cafe: clean up DMA address setup Message-ID: <20171207211728.042b6776@bbrezillon> In-Reply-To: <1512463796-29174-1-git-send-email-yamada.masahiro@socionext.com> References: <1512463796-29174-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1241 Lines: 38 On Tue, 5 Dec 2017 17:49:56 +0900 Masahiro Yamada wrote: > Use macros from to make the code readable. > The compiler warning will be kept suppressed. Applied. Thanks, Boris > > Signed-off-by: Masahiro Yamada > --- > > drivers/mtd/nand/cafe_nand.c | 8 ++------ > 1 file changed, 2 insertions(+), 6 deletions(-) > > diff --git a/drivers/mtd/nand/cafe_nand.c b/drivers/mtd/nand/cafe_nand.c > index add4613..2af5e35 100644 > --- a/drivers/mtd/nand/cafe_nand.c > +++ b/drivers/mtd/nand/cafe_nand.c > @@ -737,12 +737,8 @@ static int cafe_nand_probe(struct pci_dev *pdev, > } > > /* Set up DMA address */ > - cafe_writel(cafe, cafe->dmaaddr & 0xffffffff, NAND_DMA_ADDR0); > - if (sizeof(cafe->dmaaddr) > 4) > - /* Shift in two parts to shut the compiler up */ > - cafe_writel(cafe, (cafe->dmaaddr >> 16) >> 16, NAND_DMA_ADDR1); > - else > - cafe_writel(cafe, 0, NAND_DMA_ADDR1); > + cafe_writel(cafe, lower_32_bits(cafe->dmaaddr), NAND_DMA_ADDR0); > + cafe_writel(cafe, upper_32_bits(cafe->dmaaddr), NAND_DMA_ADDR1); > > cafe_dev_dbg(&cafe->pdev->dev, "Set DMA address to %x (virt %p)\n", > cafe_readl(cafe, NAND_DMA_ADDR0), cafe->dmabuf);