From patchwork Sun Nov 11 15:47:05 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10677713 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2FC00109C for ; Sun, 11 Nov 2018 15:47:21 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1F9092A56F for ; Sun, 11 Nov 2018 15:47:21 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 119822A5AD; Sun, 11 Nov 2018 15:47:21 +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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI 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 B0C9B2A56F for ; Sun, 11 Nov 2018 15:47:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728643AbeKLBgM (ORCPT ); Sun, 11 Nov 2018 20:36:12 -0500 Received: from mail.kernel.org ([198.145.29.99]:55978 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728542AbeKLBgM (ORCPT ); Sun, 11 Nov 2018 20:36:12 -0500 Received: from vkoul-mobl.Dlink (unknown [49.207.50.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 5DB2C20866; Sun, 11 Nov 2018 15:47:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1541951239; bh=w6PzcNk0KSnWar4rXwPGBul8ACF7rM/F6QQNhuUeqEE=; h=From:To:Cc:Subject:Date:From; b=Ie1lPTHR135WsUmVy0l9GpvWzTIx/XpNeScJPIbb9A8bMzmM0RiJbWFwSMzxn3MsM nevCIT4UPFQM7b7xaqZ9hWW8YaLD9YMWRuJqoE3CgAeqlvFZHB0+4sKa/zV+FxSw+c /O4dF8GajZKd80Z9NTghyRgm3pvhkVqu04JgUjrk= From: Vinod Koul To: dmaengine@vger.kernel.org Cc: Vinod Koul , Baolin Wang , Robin Gong , Linus Walleij Subject: [PATCH 0/5] dmaengine: emove dma_slave_config direction usage 2nd installment Date: Sun, 11 Nov 2018 21:17:05 +0530 Message-Id: <20181111154710.26904-1-vkoul@kernel.org> X-Mailer: git-send-email 2.14.4 Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Folks, Here is the 2nd installment on usage of dma_slave_config direction usage. This completes the removal except sh drivers. Now will start removing usages of this in kernel Vinod Koul (5): dmaengine: mmp_pdma: remove dma_slave_config direction usage dmaengine: sprd: remove dma_slave_config direction usage dmaengine: imx-sdma: remove dma_slave_config direction usage dmaengine: pl330: remove dma_slave_config direction usage dmaengine: ste_dma40: remove dma_slave_config direction usage drivers/dma/imx-sdma.c | 31 ++++++++++++++++++++++++++----- drivers/dma/mmp_pdma.c | 28 +++++++++++++++++++++++----- drivers/dma/pl330.c | 28 ++++++++++++++++++++++++---- drivers/dma/sprd-dma.c | 3 --- drivers/dma/ste_dma40.c | 31 +++++++++++++++++++++++++------ 5 files changed, 98 insertions(+), 23 deletions(-) Thanks