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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 24D36C761AF for ; Thu, 30 Mar 2023 11:32:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230027AbjC3Lcf (ORCPT ); Thu, 30 Mar 2023 07:32:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42144 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229563AbjC3Lcf (ORCPT ); Thu, 30 Mar 2023 07:32:35 -0400 Received: from muru.com (muru.com [72.249.23.125]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 9809910A; Thu, 30 Mar 2023 04:32:33 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id CD4F880FE; Thu, 30 Mar 2023 11:32:32 +0000 (UTC) Date: Thu, 30 Mar 2023 14:32:31 +0300 From: Tony Lindgren To: Greg Kroah-Hartman Cc: Jiri Slaby , Andy Shevchenko , Ilpo =?utf-8?B?SsOkcnZpbmVu?= , Johan Hovold , Sebastian Andrzej Siewior , Vignesh Raghavendra , linux-omap@vger.kernel.org, Andy Shevchenko , linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org Subject: Re: [PATCH v9 1/1] serial: core: Start managing serial controllers to enable runtime PM Message-ID: <20230330113231.GR7501@atomide.com> References: <20230323071051.2184-1-tony@atomide.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org * Greg Kroah-Hartman [230329 09:08]: > On Thu, Mar 23, 2023 at 09:10:47AM +0200, Tony Lindgren wrote: > > --- /dev/null > > +++ b/drivers/tty/serial/serial_base.c > > @@ -0,0 +1,142 @@ > > +// SPDX-License-Identifier: GPL-2.0-or-later > > Given that the driver core is "GPL-2.0-only", why is this -or-later? Thanks for noticing, the intention was to set it to what serial_core.c has: $ git grep -e SPDX -e MODULE_LICENSE drivers/tty/serial/serial_core.c drivers/tty/serial/serial_core.c:// SPDX-License-Identifier: GPL-2.0+ drivers/tty/serial/serial_core.c:MODULE_LICENSE("GPL"); > No copyright notice? That's fine, but again, I have to ask. Will add thanks. Tony