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 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 B497DC04AAF for ; Tue, 21 May 2019 13:47:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 948E921019 for ; Tue, 21 May 2019 13:47:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728525AbfEUNra (ORCPT ); Tue, 21 May 2019 09:47:30 -0400 Received: from mail-vs1-f65.google.com ([209.85.217.65]:46875 "EHLO mail-vs1-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726995AbfEUNra (ORCPT ); Tue, 21 May 2019 09:47:30 -0400 Received: by mail-vs1-f65.google.com with SMTP id x8so7247172vsx.13 for ; Tue, 21 May 2019 06:47:29 -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=hrj5zj678PycPgsOdycWIIzPBwh1EbRsWUWvkm8H/xY=; b=AxkcUL4Rs8Yhh/5JRhITyeHab7MQgqLyj6UrPkEcqA3GGFPJ0Oat28X3yyWZUThfcx taJvpE3mFuUE3lb4EX+Cwd4yma0rLbGhCLXDYKgJK7pcUzy9CMQlDdHw2yVG6zTS2cWW asitH9FyajapmsbGiR+EX2hu196iFBSKvkaIAjCoDARCT9jFY1vE8mLrAHcwStJFxXRa MzBMrh7ioU5rTWguPFYrWXtTyTJ7EiSOc7nzG788kB+MbMI/NzGRVTy3UZDad2V3VdWi 6RBrFRILDfg/P2Ra2TUiPMFnpQxDPDc8IRr80CH+ylbMi1iRcVfWCUxIc8Cm6lhY+Gmm GnBQ== X-Gm-Message-State: APjAAAVYoSZ1vcs14lnEReYtcJPrNncM2pQq92OFwXwIPRpzCfV2/fWE N2xXAw/yKbdHfhHQaCKjfJG9V6tHmMmUD/ntXOiygA== X-Google-Smtp-Source: APXvYqzWbL0bEPWcqgZo4irTBFXTEVaaWBkBYMAy0cyqou/25at0xX5ytlN8VG3b6Y7r6TPcSpegOgJWZBH8kRnDeCI= X-Received: by 2002:a67:8988:: with SMTP id l130mr4878361vsd.137.1558446448995; Tue, 21 May 2019 06:47:28 -0700 (PDT) MIME-Version: 1.0 References: <20190520071851.141112241@linutronix.de> <20190520071859.659568621@linutronix.de> In-Reply-To: <20190520071859.659568621@linutronix.de> From: Richard Fontana Date: Tue, 21 May 2019 09:47:17 -0400 Message-ID: Subject: Re: [patch 21/25] treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 71 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 Tue, May 21, 2019 at 3:45 AM Thomas Gleixner wrote: > > Based on 1 normalized pattern(s): > > licensed under the gplv2 or later > > extracted by the scancode license scanner the SPDX license identifier > > GPL-2.0-or-later > > has been chosen to replace the boilerplate/reference in 5 file(s). > > Signed-off-by: Thomas Gleixner > > --- > https://git.kernel.org/pub/scm/linux/kernel/git/tglx/linux-spdx.git/commit/?h=batch3&id=4c32d429b91e > --- > drivers/iio/adc/at91_adc.c | 3 +-- > drivers/iio/adc/nau7802.c | 3 +-- > drivers/video/backlight/hx8357.c | 3 +-- > drivers/video/fbdev/ssd1307fb.c | 3 +-- > include/linux/platform_data/at91_adc.h | 3 +-- > 5 files changed, 5 insertions(+), 10 deletions(-) > > --- a/drivers/iio/adc/at91_adc.c > +++ b/drivers/iio/adc/at91_adc.c > @@ -1,9 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* > * Driver for the ADC present in the Atmel AT91 evaluation boards. > * > * Copyright 2011 Free Electrons > - * > - * Licensed under the GPLv2 or later. > */ > > #include > --- a/drivers/iio/adc/nau7802.c > +++ b/drivers/iio/adc/nau7802.c > @@ -1,9 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* > * Driver for the Nuvoton NAU7802 ADC > * > * Copyright 2013 Free Electrons > - * > - * Licensed under the GPLv2 or later. > */ > > #include > --- a/drivers/video/backlight/hx8357.c > +++ b/drivers/video/backlight/hx8357.c > @@ -1,9 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* > * Driver for the Himax HX-8357 LCD Controller > * > * Copyright 2012 Free Electrons > - * > - * Licensed under the GPLv2 or later. > */ > > #include > --- a/drivers/video/fbdev/ssd1307fb.c > +++ b/drivers/video/fbdev/ssd1307fb.c > @@ -1,9 +1,8 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > /* > * Driver for the Solomon SSD1307 OLED controller > * > * Copyright 2012 Free Electrons > - * > - * Licensed under the GPLv2 or later. > */ > > #include > --- a/include/linux/platform_data/at91_adc.h > +++ b/include/linux/platform_data/at91_adc.h > @@ -1,7 +1,6 @@ > +/* SPDX-License-Identifier: GPL-2.0-or-later */ > /* > * Copyright (C) 2011 Free Electrons > - * > - * Licensed under the GPLv2 or later. > */ > > #ifndef _AT91_ADC_H_ > > -- Richard Fontana Senior Commercial Counsel Red Hat, Inc.