From patchwork Sat Aug 26 07:21:22 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christoph Hellwig X-Patchwork-Id: 9923187 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 3E3D8603FA for ; Sat, 26 Aug 2017 07:23:03 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 2F79828531 for ; Sat, 26 Aug 2017 07:23:03 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 246EA285B1; Sat, 26 Aug 2017 07:23:03 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 78EA428531 for ; Sat, 26 Aug 2017 07:23:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751931AbdHZHVi (ORCPT ); Sat, 26 Aug 2017 03:21:38 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:33332 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750849AbdHZHVh (ORCPT ); Sat, 26 Aug 2017 03:21:37 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=References:In-Reply-To:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:MIME-Version:Content-Type: Content-Transfer-Encoding:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=WuzhwYAEV+8+izyOEpxnIwVoH5z5tvTOort/hVXjUc4=; b=THDgGJzsAf/N/+4THgeMGFlMF YrAymF77n0R+RlfHifGrEDrmjpqZXmoK6GJq9G8+37xUGzbbSMl1+EWTifZIryWPPVh/bHsZTgnjP 6JM1Cs0HDyorTGf3YiOOg9QdmrKOxZZ8n//b+7iLOR1ZfBmnfto/6rY2nLFewZZFWtd7BaVMBZvA0 os00O0xYdwxhWpNI5OvlYVC/hHq2DQAhMuI3m5hJb4RrxFJF9YumCfY00hESLyW82uMyGKChxZEZK acjVUTG7gDDxF8p/5XeGsbb8Yl/dRL+QTY96qaOUGOon1jiMsb8PizZMVMmG3VHHNuVzvlnYsBgQj Ay6CWpacg==; Received: from 178.114.158.16.wireless.dyn.drei.com ([178.114.158.16] helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dlVPU-00039Y-Dw; Sat, 26 Aug 2017 07:21:37 +0000 From: Christoph Hellwig To: netdev@vger.kernel.org Cc: "David S. Miller" , Ralf Baechle , linux-mips@vger.kernel.org, linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/4] sgiseeq: switch to dma_alloc_attrs Date: Sat, 26 Aug 2017 09:21:22 +0200 Message-Id: <20170826072125.9790-2-hch@lst.de> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170826072125.9790-1-hch@lst.de> References: <20170826072125.9790-1-hch@lst.de> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Use dma_alloc_attrs directly instead of the dma_alloc_noncoherent wrapper. Signed-off-by: Christoph Hellwig Acked-by: Ralf Baechle Acked-by: David S. Miller --- drivers/net/ethernet/seeq/sgiseeq.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/ethernet/seeq/sgiseeq.c b/drivers/net/ethernet/seeq/sgiseeq.c index 70347720fdf9..573691bc3b71 100644 --- a/drivers/net/ethernet/seeq/sgiseeq.c +++ b/drivers/net/ethernet/seeq/sgiseeq.c @@ -737,8 +737,8 @@ static int sgiseeq_probe(struct platform_device *pdev) sp = netdev_priv(dev); /* Make private data page aligned */ - sr = dma_alloc_noncoherent(&pdev->dev, sizeof(*sp->srings), - &sp->srings_dma, GFP_KERNEL); + sr = dma_alloc_attrs(&pdev->dev, sizeof(*sp->srings), &sp->srings_dma, + GFP_KERNEL, DMA_ATTR_NON_CONSISTENT); if (!sr) { printk(KERN_ERR "Sgiseeq: Page alloc failed, aborting.\n"); err = -ENOMEM; @@ -813,8 +813,8 @@ static int sgiseeq_remove(struct platform_device *pdev) struct sgiseeq_private *sp = netdev_priv(dev); unregister_netdev(dev); - dma_free_noncoherent(&pdev->dev, sizeof(*sp->srings), sp->srings, - sp->srings_dma); + dma_free_attrs(&pdev->dev, sizeof(*sp->srings), sp->srings, + sp->srings_dma, DMA_ATTR_NON_CONSISTENT); free_netdev(dev); return 0;