Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp2502375imu; Fri, 23 Nov 2018 10:06:42 -0800 (PST) X-Google-Smtp-Source: AFSGD/W4nXbu7phVu+V69N+wEq4T0LNJ3u5pDGn4WHzib9WnmS6z5JMaZyvw2AI7up0JOaCm1trh X-Received: by 2002:a17:902:8507:: with SMTP id bj7-v6mr16375420plb.99.1542996402056; Fri, 23 Nov 2018 10:06:42 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542996402; cv=none; d=google.com; s=arc-20160816; b=lhoo+sq6oqPMpj5iTXSSz8E3YJz7O2Ts4KaYEtIW1iUy2V/68xEyNACe95L6RCWXOj gI3UGDqeFqUAdHJSE+q+k6htjSHoXCvxydRZvu/Am1zmD5msEx4XAtXq7Wc9YXkpWNui 2gS4VuBPgBax+HYVzTRFbFwamsP+ZvVTE+Wvx3BjB8dJ5xxUCVb3TJZCkkKzBocEApB4 IZjjMx8kiSutv9RWW2/ER5Y5dCpoIf+FtPFUqiy3yUxLkYgfErwfC8p7IEn/CxPfsBp1 f3x0QU9jHh3MDS9QYcxfdhTVQhw6GQdVGzb1hgSTg+0LK1deOLigyTq9ZCE83WpT5TU2 IF5g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=KFUhM2zhX8ELtnsWewzfSrde44iK81QgM+Oilu877oM=; b=u88EbWoTo+lcmLSWqNQocURWeR8vu/Fgh6m7Dt7XfYF7Y8J6gy/ArTqCZdjbIsCBF+ j6aJN3TTJtcXlSF3M2j+dQZtY1bJgZHcbw8qBa2prkiGQ6MbQdid3bdzi5xYdmnnFcdb kF/BWm62qTnHeeBLwrUEP9rUFknEuElff1COTDlGSxp0VRND8RlNsfq64r8U5SysUf43 sbr0pwx7+LP16hhSb4JQEwLJBURVJ+IpRwsBlMLw9xCtm1+7Vlgj0Fr932bENnhUZEk6 mQ9wLp4T5dYuH7j3M82vA7kevscD5pUcEk9JRki0ajTDdb9bz1AyeREhyySAWSF786sW zPTg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i62si4147767pgd.556.2018.11.23.10.06.27; Fri, 23 Nov 2018 10:06:42 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2395272AbeKWAih (ORCPT + 99 others); Thu, 22 Nov 2018 19:38:37 -0500 Received: from mleia.com ([178.79.152.223]:48392 "EHLO mail.mleia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2388851AbeKWAih (ORCPT ); Thu, 22 Nov 2018 19:38:37 -0500 Received: from mail.mleia.com (localhost [127.0.0.1]) by mail.mleia.com (Postfix) with ESMTP id B3D0D42B403; Thu, 22 Nov 2018 13:59:07 +0000 (GMT) From: Vladimir Zapolskiy To: Linus Walleij Cc: linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] gpio: restore original GPLv2+ license of gpiolib-of.c sources Date: Thu, 22 Nov 2018 15:59:01 +0200 Message-Id: <20181122135901.31849-1-vz@mleia.com> X-Mailer: git-send-email 2.17.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-49551924 X-CRM114-CacheID: sfid-20181122_135907_760774_94F6FCCA X-CRM114-Status: GOOD ( 10.37 ) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org It's easy to verify that the change of drivers/gpio/gpiolib-of.c license header to SPDX standard changes the license from GPLv2+ to GPLv2, and this change corrects it. Fixes: dae5f0afcfc3 ("gpio: Use SPDX header for core library") Signed-off-by: Vladimir Zapolskiy --- drivers/gpio/gpiolib-of.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 7f1260c78270..59cb87325179 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-2.0 +// SPDX-License-Identifier: GPL-2.0+ /* * OF helpers for the GPIO API * -- 2.17.1