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=-0.6 required=3.0 tests=DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS,T_DKIM_INVALID, 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 C8C39C3279B for ; Mon, 2 Jul 2018 15:32:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 80F60208CE for ; Mon, 2 Jul 2018 15:32:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=lechnology.com header.i=@lechnology.com header.b="b8cnsR3m" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 80F60208CE Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lechnology.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752556AbeGBPcH (ORCPT ); Mon, 2 Jul 2018 11:32:07 -0400 Received: from vern.gendns.com ([206.190.152.46]:37725 "EHLO vern.gendns.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752055AbeGBPcG (ORCPT ); Mon, 2 Jul 2018 11:32:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lechnology.com; s=default; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To:Subject:Sender :Reply-To: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=0zo33vXFG4FDMOg/p4mbp+pTGOR92yVRNzk5VnF9fFk=; b=b8cnsR3mZ7kn1MWz8ZBxu0qbho juIX9oxog7wa2Qn244zSALMukXn0+9mFrqEdMUCZeu7vv/tHjaNH2A1k3kYqpchOG4RQa698y++Aa 6E0cHiAurNmCKNTrskTyqvyllZ5GT0CjH609asjxjCj39lNmDuiRO77nhd8mYtWKonAEU9fyyl++r SKkxEA9DysaaJtAJbnRn0yANtBCNu/P0ztWvYGFIY7UXEjYXG2BHHPUWdPwPxRfJyAfvW5KsYYroL 5KJV4hVoAxfqAYW7RFcaKZPt6GhYK3PZIDuXC7UFVlXvhTNFbBrbqVHxU3yo0QNSI3QWoIPvPR5BW ULaCaypw==; Received: from 108-198-5-147.lightspeed.okcbok.sbcglobal.net ([108.198.5.147]:59372 helo=[192.168.0.134]) by vern.gendns.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91) (envelope-from ) id 1fa0o6-00DDwz-QC; Mon, 02 Jul 2018 11:32:04 -0400 Subject: Re: [PATCH v3 00/13] ARM: davinci: remove duplicate aemif support To: Sekhar Nori , Bartosz Golaszewski , Kevin Hilman , Russell King , Michael Turquette , Stephen Boyd Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, Bartosz Golaszewski References: <20180628095748.4462-1-brgl@bgdev.pl> <52a274f1-283a-a14a-54f3-4b95b6605c4f@ti.com> From: David Lechner Message-ID: <59fdc532-bb72-ffae-cfb6-a7f156c14771@lechnology.com> Date: Mon, 2 Jul 2018 10:32:01 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <52a274f1-283a-a14a-54f3-4b95b6605c4f@ti.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - vern.gendns.com X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - lechnology.com X-Get-Message-Sender-Via: vern.gendns.com: authenticated_id: davidmain+lechnology.com/only user confirmed/virtual account not confirmed X-Authenticated-Sender: vern.gendns.com: davidmain@lechnology.com X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 07/02/2018 07:28 AM, Sekhar Nori wrote: > Hi David, Stephen, > > On Thursday 28 June 2018 03:27 PM, Bartosz Golaszewski wrote: >> From: Bartosz Golaszewski >> >> This series moves all aemif/nand users to using the ti-aemif platform >> driver located in drivers/memory instead of the older API located in >> mach-davinci. >> >> First five patches add necessary changes to the clock driver. Next >> seven convert the board files to using the ti-aemif driver. Last patch >> removes now dead code. > > How do you want to handle this series? I can apply the series and > provide you an immutable branch on v4.18-rc1 with the clock patches > applied if that can work. Sounds good to me. But I'm new to this maintainer thing, so maybe there is something to consider that I haven't thought of? From mboxrd@z Thu Jan 1 00:00:00 1970 From: david@lechnology.com (David Lechner) Date: Mon, 2 Jul 2018 10:32:01 -0500 Subject: [PATCH v3 00/13] ARM: davinci: remove duplicate aemif support In-Reply-To: <52a274f1-283a-a14a-54f3-4b95b6605c4f@ti.com> References: <20180628095748.4462-1-brgl@bgdev.pl> <52a274f1-283a-a14a-54f3-4b95b6605c4f@ti.com> Message-ID: <59fdc532-bb72-ffae-cfb6-a7f156c14771@lechnology.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On 07/02/2018 07:28 AM, Sekhar Nori wrote: > Hi David, Stephen, > > On Thursday 28 June 2018 03:27 PM, Bartosz Golaszewski wrote: >> From: Bartosz Golaszewski >> >> This series moves all aemif/nand users to using the ti-aemif platform >> driver located in drivers/memory instead of the older API located in >> mach-davinci. >> >> First five patches add necessary changes to the clock driver. Next >> seven convert the board files to using the ti-aemif driver. Last patch >> removes now dead code. > > How do you want to handle this series? I can apply the series and > provide you an immutable branch on v4.18-rc1 with the clock patches > applied if that can work. Sounds good to me. But I'm new to this maintainer thing, so maybe there is something to consider that I haven't thought of?