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=-9.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham 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 A9D17C282DE for ; Thu, 23 May 2019 12:52:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 80E8E20879 for ; Thu, 23 May 2019 12:52:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730878AbfEWMwM (ORCPT ); Thu, 23 May 2019 08:52:12 -0400 Received: from mail-vs1-f66.google.com ([209.85.217.66]:35706 "EHLO mail-vs1-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730560AbfEWMwL (ORCPT ); Thu, 23 May 2019 08:52:11 -0400 Received: by mail-vs1-f66.google.com with SMTP id q13so3506731vso.2 for ; Thu, 23 May 2019 05:52:10 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=/Yfl8R173/g4wJnR2jzyGZQv0RftiCS8y12NIPgwcQk=; b=te6wOtUtawLLsXS5EAV3k7loBzwR0hiG5o3fRks2vjC7yBrhKp/eUO/j6XARkq9b9d t71yvASmU9lCTFwTPDHc8RLyd/JFYBMleSqsMFqtXpct0o1WE5K9FwW9FJnQeD6SCEBd 7xh6cEjJzLy7FTI+l87VYGn6vrV1FiR7aHqKdTzbANvOh107K1t7bVjdXNF/0KLe4vks eQ3PB0XV2QNwtCN09YxcqNxkt7OkLWpc5vpuffzo/p/YQo4DWvREWmWFX5ycqmYLlhI0 NpSHN+1W2+47Wf/o+DBtz7BUX+kxo0SNpLSh0OTzs+TUTT18nRjWwOfX0dXQMMHjSxsY Hbmg== X-Gm-Message-State: APjAAAW5/OrvESN661QHhFYTR5g4dlABqGAIx94Vp425+F1p4qu8yXFn BQnMW0WzGzqNdQnxMiI4lHrbwfdQ4eYSnn+IkD/kSw== X-Google-Smtp-Source: APXvYqx/D2djk2aGwvHaMf6LBO376aUgnNVNkXcgXbOAzMUpIKMKAOXQLUA1m6QxP7pbs8cVfvI/dzeP7I/fyzTno7w= X-Received: by 2002:a67:f8cf:: with SMTP id c15mr6550299vsp.174.1558615930464; Thu, 23 May 2019 05:52:10 -0700 (PDT) MIME-Version: 1.0 References: <20190523091437.334232837@linutronix.de> <20190523091651.596776854@linutronix.de> In-Reply-To: <20190523091651.596776854@linutronix.de> From: Richard Fontana Date: Thu, 23 May 2019 08:51:59 -0400 Message-ID: Subject: Re: [Batch 5 - patch 24/25] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 124 To: Thomas Gleixner Cc: linux-spdx@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Sender: linux-spdx-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spdx@vger.kernel.org Reviewed-by: Richard Fontana On Thu, May 23, 2019 at 5:29 AM Thomas Gleixner wrote: > > Based on 1 normalized pattern(s): > > this program is free software you can redistribute it and or modify > it under the terms of the gnu general public license as published by > the free software foundation either version 2 of the license or at > your option any later version this program is distributed as is > without any warranty of any kind whether express or implied without > even the implied warranty of merchantability or fitness for a > particular purpose see the gnu general public license for more > details > > extracted by the scancode license scanner the SPDX license identifier > > GPL-2.0-or-later > > has been chosen to replace the boilerplate/reference in 1 file(s). > > Signed-off-by: Thomas Gleixner > --- > https://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-spdx.git/commit/?h=batch5&id=302a78ae3ede > --- > drivers/regulator/tps65132-regulator.c | 11 +---------- > 1 file changed, 1 insertion(+), 10 deletions(-) > > --- a/drivers/regulator/tps65132-regulator.c > +++ b/drivers/regulator/tps65132-regulator.c > @@ -1,3 +1,4 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* > * TI TPS65132 Regulator driver > * > @@ -5,16 +6,6 @@ > * > * Author: Venkat Reddy Talla > * Laxman Dewangan > - * > - * This program is free software; you can redistribute it and/or > - * modify it under the terms of the GNU General Public License as > - * published by the Free Software Foundation; either version 2 of the > - * License, or (at your option) any later version. > - * > - * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind, > - * whether express or implied; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > - * General Public License for more details. > */ > > #include > > -- Richard Fontana Senior Commercial Counsel Red Hat, Inc.