From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756404AbeEASfq (ORCPT ); Tue, 1 May 2018 14:35:46 -0400 Received: from mail-io0-f195.google.com ([209.85.223.195]:36763 "EHLO mail-io0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756278AbeEASfp (ORCPT ); Tue, 1 May 2018 14:35:45 -0400 X-Google-Smtp-Source: AB8JxZr6BaCbB+qfriKPd8MHB8Uoudz7tkofp9f0JbnvzGI7RcbrT1IGjATYrsiToPAbRsVIaSpoQWDZ5/j1UiRNJ7s= MIME-Version: 1.0 In-Reply-To: References: <20180501052952.26765-1-andrew.smirnov@gmail.com> <20180501052952.26765-3-andrew.smirnov@gmail.com> From: Andrey Smirnov Date: Tue, 1 May 2018 11:35:43 -0700 Message-ID: Subject: Re: [PATCH v3 2/2] nvmem: Add RAVE SP EEPROM driver To: Srinivas Kandagatla Cc: linux-kernel , Chris Healy , Lucas Stach , Aleksander Morgado Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 1, 2018 at 8:33 AM, Srinivas Kandagatla wrote: > > > On 01/05/18 06:29, Andrey Smirnov wrote: >> >> +// SPDX-License-Identifier: GPL-2.0+ > > ... >> >> +MODULE_LICENSE("GPL"); > > I think this should be > MODULE_LICENSE("GPL v2"); With that change the two statements would contradict each other. "GPL" means "GNU Public License v2 or later", whereas "GPL v2" means "GNU Public License v2" as per https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/linux/module.h#n175 Thanks, Andrey Smirnov