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=-3.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS 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 E04A2C55ABD for ; Thu, 5 Nov 2020 20:21:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 86F282072E for ; Thu, 5 Nov 2020 20:21:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604607690; bh=iisDYmnCqmymIp9jDmc3emaxJKy7G18dQ4jz7l5yNf4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=OXuCDgPLwWjZ1tfRkdPqyW/81OeXUv2CMFGwUYFpPLdNTDEnyd8Lv1d9lPc5f0/rx Nvr92F+q+X7TlTJRKpQpQ8il44E23PMWFAPl+kkEOsWlxL49lrs3u4JRqogsyvuijh wCtTxg0Adrg6BODB5VvPtpulsP29LPmJNrBoVdqg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732257AbgKEUV3 (ORCPT ); Thu, 5 Nov 2020 15:21:29 -0500 Received: from mail.kernel.org ([198.145.29.99]:34786 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732238AbgKEUV2 (ORCPT ); Thu, 5 Nov 2020 15:21:28 -0500 Received: from localhost (83-86-74-64.cable.dynamic.v4.ziggo.nl [83.86.74.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 45C11206A1; Thu, 5 Nov 2020 20:21:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604607687; bh=iisDYmnCqmymIp9jDmc3emaxJKy7G18dQ4jz7l5yNf4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=2P75OZLUStWL1aGyyd/Da81aZljbX9qzXGnTnNGkvCtGQl1yRW5hjpyqSk+W8F11h 7WAiJuz8nKkh8LipvSMy6M7FDwqfwv86DDpoXmgzTxvOzFOnNCeR9UNmWl0Wx36Que DvkEz5vw/fpxwDyRRfIqH1A7uT2TvCyv1zB1yLOA= Date: Thu, 5 Nov 2020 21:22:14 +0100 From: Greg KH To: Dan Williams Cc: Leon Romanovsky , Dave Ertman , alsa-devel@alsa-project.org, Takashi Iwai , Mark Brown , linux-rdma , Jason Gunthorpe , Doug Ledford , Netdev , David Miller , Jakub Kicinski , Ranjani Sridharan , Pierre-Louis Bossart , Fred Oh , Parav Pandit , "Saleem, Shiraz" , "Patil, Kiran" , Linux Kernel Mailing List Subject: Re: [PATCH v3 01/10] Add auxiliary bus support Message-ID: <20201105202214.GA1339091@kroah.com> References: <20201023003338.1285642-1-david.m.ertman@intel.com> <20201023003338.1285642-2-david.m.ertman@intel.com> <20201105094719.GQ5429@unreal> 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-rdma@vger.kernel.org On Thu, Nov 05, 2020 at 09:12:51AM -0800, Dan Williams wrote: > > > > > > Per above SPDX is v2 only, so... > > > > Isn't it default for the Linux kernel? > > SPDX eliminated the need to guess a default, and MODULE_LICENSE("GPL") > implies the "or later" language. The only default assumption is that > the license is GPL v2 compatible, those possibilities are myriad, but > v2-only is the first preference. No, MODULE_LICENSE("GPL") does not imply "or later" at all. Please see include/linux/module.h, it means "GPL version 2". thanks, greg k-h