From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932873AbeBVO2j (ORCPT ); Thu, 22 Feb 2018 09:28:39 -0500 Received: from lelnx193.ext.ti.com ([198.47.27.77]:48106 "EHLO lelnx193.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932668AbeBVO2g (ORCPT ); Thu, 22 Feb 2018 09:28:36 -0500 Subject: Re: [PATCH 2/4] ARM: OMAP2+: Introduce low-level suspend code for AM43XX To: Philippe Ombredanne CC: Tony Lindgren , Santosh Shilimkar , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" , , LKML , Keerthy J , Johan Hovold References: <20180216214002.6209-1-d-gerlach@ti.com> <20180216214002.6209-3-d-gerlach@ti.com> From: Dave Gerlach Message-ID: Date: Thu, 22 Feb 2018 08:28:16 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [128.247.59.203] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On 02/20/2018 01:25 AM, Philippe Ombredanne wrote: > Dave, > > On Fri, Feb 16, 2018 at 10:40 PM, Dave Gerlach wrote: >> Although similar to AM33XX, introduce a new low-level asm file for >> suspend containing new context save and restore paths for EMIF and l2 >> cache disabling and enabling. >> >> Signed-off-by: Dave Gerlach >> --- >> arch/arm/mach-omap2/sleep43xx.S | 393 ++++++++++++++++++++++++++++++++++++++++ >> 1 file changed, 393 insertions(+) >> create mode 100644 arch/arm/mach-omap2/sleep43xx.S >> >> diff --git a/arch/arm/mach-omap2/sleep43xx.S b/arch/arm/mach-omap2/sleep43xx.S >> new file mode 100644 >> index 000000000000..3a8bfd62a33c >> --- /dev/null >> +++ b/arch/arm/mach-omap2/sleep43xx.S >> @@ -0,0 +1,393 @@ >> +/* >> + * Low level suspend code for AM43XX SoCs >> + * >> + * Copyright (C) 2013-2018 Texas Instruments Incorporated - http://www.ti.com/ >> + * Dave Gerlach, Vaibhav Bedia >> + * >> + * This program is free software; you can redistribute it and/or >> + * modify it under the terms of the GNU General Public License as >> + * published by the Free Software Foundation version 2. >> + * >> + * This program is distributed "as is" WITHOUT ANY WARRANTY of any >> + * kind, whether express or implied; without even the implied warranty >> + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >> + * GNU General Public License for more details. >> + */ > > Do you mind using SPDX tags per [1] rather that this fine but long > legalese here and in the whole patch set? Unless you are a legalese > lover of course! Yes I will switch, these patches have been around for a long time and I didn't think to update the license after rebasing them. Thanks for the reminder! Regards, Dave > > [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/license-rules.rst >