From patchwork Fri Feb 8 09:09:06 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 10802545 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 39C1E17F0 for ; Fri, 8 Feb 2019 09:09:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 274832D980 for ; Fri, 8 Feb 2019 09:09:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 166202D986; Fri, 8 Feb 2019 09:09:14 +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=-7.9 required=2.0 tests=BAYES_00,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 573322D980 for ; Fri, 8 Feb 2019 09:09:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727476AbfBHJJN (ORCPT ); Fri, 8 Feb 2019 04:09:13 -0500 Received: from michel.telenet-ops.be ([195.130.137.88]:41218 "EHLO michel.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727260AbfBHJJM (ORCPT ); Fri, 8 Feb 2019 04:09:12 -0500 Received: from ramsan ([84.194.111.163]) by michel.telenet-ops.be with bizsmtp id a99A1z00x3XaVaC0699Ad5; Fri, 08 Feb 2019 10:09:11 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1gs29m-0004It-QX; Fri, 08 Feb 2019 10:09:10 +0100 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1gs29m-0000Ct-MC; Fri, 08 Feb 2019 10:09:10 +0100 From: Geert Uytterhoeven To: Mark Brown Cc: linux-spi@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 0/3] spi: renesas: Replace spi_master by spi_controller Date: Fri, 8 Feb 2019 10:09:06 +0100 Message-Id: <20190208090909.739-1-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Mark, As of commit 8caab75fd2c2a926 ('spi: Generalize SPI "master" to "controller"'), the old master-centric names are compatibility wrappers for the new controller-centric names. Hence this patch series converts the Renesas SPI drivers used on ARM and DT-based platforms over from spi_master to spi_controller. RSPI and MSIOF were tested on actual hardware. Assembly output before/after was compared for all three drivers. Thanks! Geert Uytterhoeven (3): spi: rspi: Replace spi_master by spi_controller spi: sh-hspi: Replace spi_master by spi_controller spi: sh-msiof: Replace spi_master by spi_controller drivers/spi/spi-rspi.c | 170 ++++++++++++++++++------------------- drivers/spi/spi-sh-hspi.c | 36 ++++---- drivers/spi/spi-sh-msiof.c | 168 ++++++++++++++++++------------------ 3 files changed, 186 insertions(+), 188 deletions(-)