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=-5.3 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 D4317C4741F for ; Thu, 5 Nov 2020 19:32:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8BF132078E for ; Thu, 5 Nov 2020 19:32:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731799AbgKETcn (ORCPT ); Thu, 5 Nov 2020 14:32:43 -0500 Received: from mga05.intel.com ([192.55.52.43]:36334 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726996AbgKETcn (ORCPT ); Thu, 5 Nov 2020 14:32:43 -0500 IronPort-SDR: EI809Ta3QPLihzHLwPuVX4GkOcI+Zf48bjGh14JcfJXJJbWf11ograuLHc0yvkHOitDG80cAzK WAcPHjxndaag== X-IronPort-AV: E=McAfee;i="6000,8403,9796"; a="254153466" X-IronPort-AV: E=Sophos;i="5.77,454,1596524400"; d="scan'208";a="254153466" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Nov 2020 11:32:42 -0800 IronPort-SDR: X+y1wice22ze5u8UH/r7/Lhh3EMQSy98/maUv2UJizrrh8Ql/VDQInL/x1alfiquMX9XlC00Zs a0fb1L7MzXxA== X-IronPort-AV: E=Sophos;i="5.77,454,1596524400"; d="scan'208";a="471774404" Received: from umedepal-mobl2.amr.corp.intel.com (HELO [10.254.6.114]) ([10.254.6.114]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Nov 2020 11:32:41 -0800 Subject: Re: [PATCH v3 01/10] Add auxiliary bus support To: "Ertman, David M" , "Williams, Dan J" Cc: "alsa-devel@alsa-project.org" , Takashi Iwai , Mark Brown , linux-rdma , Jason Gunthorpe , Doug Ledford , Netdev , David Miller , Jakub Kicinski , Greg KH , Ranjani Sridharan , Fred Oh , Parav Pandit , "Saleem, Shiraz" , "Patil, Kiran" , Linux Kernel Mailing List , Leon Romanovsky References: <20201023003338.1285642-1-david.m.ertman@intel.com> <20201023003338.1285642-2-david.m.ertman@intel.com> From: Pierre-Louis Bossart Message-ID: Date: Thu, 5 Nov 2020 13:32:40 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org >>> +module_init(auxiliary_bus_init); >>> +module_exit(auxiliary_bus_exit); >>> + >>> +MODULE_LICENSE("GPL"); >> >> Per above SPDX is v2 only, so... >> >> MODULE_LICENSE("GPL v2"); >> > > added v2. "GPL v2" is the same as "GPL" here, it does not have any additional meaning. https://www.kernel.org/doc/html/latest/process/license-rules.html “GPL” Module is licensed under GPL version 2. This does not express any distinction between GPL-2.0-only or GPL-2.0-or-later. The exact license information can only be determined via the license information in the corresponding source files. “GPL v2” Same as “GPL”. It exists for historic reasons.