Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751344AbdHLJgR (ORCPT ); Sat, 12 Aug 2017 05:36:17 -0400 Received: from mailgw01.mediatek.com ([218.249.47.110]:59957 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1750780AbdHLJgQ (ORCPT ); Sat, 12 Aug 2017 05:36:16 -0400 Message-ID: <1502530568.11148.55.camel@mhfsdcap03> Subject: Re: [PATCH 7/8] memory: mtk-smi: Rearrange some function position alphabetically From: Yong Wu To: Robin Murphy CC: Joerg Roedel , Rob Herring , Matthias Brugger , Will Deacon , Daniel Kurtz , Tomasz Figa , Mark Rutland , Catalin Marinas , , , , , , , , , , , Arvind Yadav , Date: Sat, 12 Aug 2017 17:36:08 +0800 In-Reply-To: <34e9e7ec-ff9b-caf9-09ac-a0d9e9d85fa5@arm.com> References: <1502445377-26936-1-git-send-email-yong.wu@mediatek.com> <1502445377-26936-8-git-send-email-yong.wu@mediatek.com> <34e9e7ec-ff9b-caf9-09ac-a0d9e9d85fa5@arm.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1552 Lines: 39 On Fri, 2017-08-11 at 19:09 +0100, Robin Murphy wrote: > On 11/08/17 10:56, Yong Wu wrote: > > Only adjust some code position in Soc numerical order, from mt2701, > > mt2712 to mt8173. > > > > Besides, 3 minor changes: > > 1) fix a coding style issue: > > CHECK: Alignment should match open parenthesis > > + writel(reg_val, > > + common->smi_ao_base > > 2) change from readl to readl_relaxed in gen1_config_port. > > 3) change the type "larbid" from "int" to "unsigned int" to meet > > the requirement of of_property_read_u32. > > If moving existing code around is really necessary, do it as a > preliminary patch *before* any material changes (and arguably separate > even from the whitespace and comment updates) - those diffs are usually > hard to review as-is, so being able to check you get binary-identical > object files before and after is reassuring. A "cleanup" patch shouldn't > need to touch code added in the same series, and it certainly shouldn't > have significant things like the readl_relaxed() change hidden in it. OK. This patch is really not easy to read. This patch-set is mainly for supporting MT2712 IOMMU. thus, I will use a patch "readl_relaxed replace readl" instead of this one. About the cleanup patch, I can send it in future if necessary. > > Robin. > > > Signed-off-by: Yong Wu > > --- > > drivers/memory/mtk-smi.c | 105 +++++++++++++++++++++++------------------------ > > 1 file changed, 52 insertions(+), 53 deletions(-) > > [...]