Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752512AbdLGVUQ (ORCPT ); Thu, 7 Dec 2017 16:20:16 -0500 Received: from mail-wm0-f48.google.com ([74.125.82.48]:38746 "EHLO mail-wm0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751288AbdLGVUP (ORCPT ); Thu, 7 Dec 2017 16:20:15 -0500 X-Google-Smtp-Source: AGs4zMatk5Relq6bySEAwwmxso/Obei82nlgG+Fm9jWLNNYfIiOCRjlnLdgjpUCzYbD+HFlu11XBcExiVVZNluUEYQ8= MIME-Version: 1.0 In-Reply-To: References: <20171117190747.21642-1-brendanhiggins@google.com> <20171117190747.21642-2-brendanhiggins@google.com> From: Philippe Ombredanne Date: Thu, 7 Dec 2017 22:19:33 +0100 Message-ID: Subject: Re: [PATCH v8 1/3] arm: npcm: add basic support for Nuvoton BMCs To: Brendan Higgins Cc: Rob Herring , Russell King , Mark Rutland , Tomer Maimon , Avi Fishman , Rick Altherr , Florian Fainelli , julien.thierry@arm.com, devicetree , Linux Kernel Mailing List , "moderated list:ARM/FREESCALE IMX / MXC ARM ARCHITECTURE" , OpenBMC Maillist Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1435 Lines: 48 Brendan, On Thu, Dec 7, 2017 at 9:37 PM, Brendan Higgins wrote: > Any update on this? > > On Fri, Nov 17, 2017 at 11:07 AM, Brendan Higgins > wrote: >> Adds basic support for the Nuvoton NPCM750 BMC. >> >> Signed-off-by: Brendan Higgins >> Reviewed-by: Tomer Maimon >> Reviewed-by: Avi Fishman >> Tested-by: Tomer Maimon >> Tested-by: Avi Fishman >> --- /dev/null >> +++ b/arch/arm/mach-npcm/npcm7xx.c >> @@ -0,0 +1,25 @@ >> +/* >> + * Copyright (c) 2017 Nuvoton Technology corporation. >> + * Copyright 2017 Google, Inc. >> + * >> + * This program is free software; you can redistribute it and/or modify >> + * it under the terms of the GNU General Public License version 2 as >> + * published by the Free Software Foundation. >> + */ Have you considered using the new SPDX ids here instead of the traditional license boilerplate? This could come out this way: // SPDX-License-Identifier: GPL-2.0 // Copyright (c) 2017 Nuvoton Technology corporation. // Copyright 2017 Google, Inc. It is shorter and simpler, with a better code/comments ratio. And if you wonder about why using C++ style comment, please check Linus posts on the topic, as well as Thomas doc patches. Thank you for your kind consideration! -- Cordially Philippe Ombredanne