From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.5 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 58093C433E0 for ; Sat, 6 Mar 2021 19:24:23 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6C5D4650A2 for ; Sat, 6 Mar 2021 19:24:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6C5D4650A2 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4DtF0P0V09z3cTY for ; Sun, 7 Mar 2021 06:24:21 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.a=rsa-sha256 header.s=korg header.b=xdU0jKfv; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=linuxfoundation.org (client-ip=198.145.29.99; helo=mail.kernel.org; envelope-from=gregkh@linuxfoundation.org; receiver=) Authentication-Results: lists.ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.a=rsa-sha256 header.s=korg header.b=xdU0jKfv; dkim-atps=neutral Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4DtDzt2pHdz3cJ7 for ; Sun, 7 Mar 2021 06:23:52 +1100 (AEDT) Received: by mail.kernel.org (Postfix) with ESMTPSA id 813AB64E0F; Sat, 6 Mar 2021 19:23:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1615058629; bh=cTnXEc/F4W5azx4fPkGRWkSBUH6CHrJ93Qn3flShYsM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=xdU0jKfvhBBnrl7a+pwDiUlnXJVbuBJT0ZBRK57ZNgBWZKcxfpDjerLzn4TuqFa4b 8p7p3SNgdzG/gzhE8E65D+l4AeN0wE37I+dtB2J1rM3H/ftKqsj0zk2ciQbfZGpRFQ U55CHCRKETy0MXekjLnApTi3abggfVLSTgRFNyts= Date: Sat, 6 Mar 2021 20:23:46 +0100 From: Greg Kroah-Hartman To: Christophe Leroy Subject: Re: [PATCH v1 2/3] tty: serial: ucc_uart: replace qe_io{read, write}* wrappers by generic io{read,write}* Message-ID: References: <479e57158ed85c041e4c32ef17b55024f8a784ce.1615053848.git.christophe.leroy@csgroup.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <479e57158ed85c041e4c32ef17b55024f8a784ce.1615053848.git.christophe.leroy@csgroup.eu> X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Timur Tabi , Rasmus Villemoes , linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org, Li Yang , linux-serial@vger.kernel.org, Jiri Slaby , linux-arm-kernel@lists.infradead.org, Qiang Zhao Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" On Sat, Mar 06, 2021 at 06:09:30PM +0000, Christophe Leroy wrote: > Commit 6ac9b61786cc ("soc: fsl: qe: introduce qe_io{read,write}* > wrappers") added specific I/O accessors for qe because at that > time ioread/iowrite functions were sub-optimal on powerpc/32 > compared to the architecture specific in_/out_ IO accessors. > > But as ioread/iowrite accessors are now equivalent since > commit 894fa235eb4c ("powerpc: inline iomap accessors"), > use them in order to allow removal of the qe specific ones. > > Signed-off-by: Christophe Leroy > --- > drivers/tty/serial/ucc_uart.c | 124 +++++++++++++++++----------------- > 1 file changed, 62 insertions(+), 62 deletions(-) Acked-by: Greg Kroah-Hartman