From patchwork Sat Jun 22 14:55:10 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Cameron X-Patchwork-Id: 11011323 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id E0A4C1398 for ; Sat, 22 Jun 2019 14:57:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D1FD128ADC for ; Sat, 22 Jun 2019 14:57:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C67EA28B97; Sat, 22 Jun 2019 14:57:59 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7D17E28ADC for ; Sat, 22 Jun 2019 14:57:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726320AbfFVO57 (ORCPT ); Sat, 22 Jun 2019 10:57:59 -0400 Received: from mail.kernel.org ([198.145.29.99]:58306 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726276AbfFVO56 (ORCPT ); Sat, 22 Jun 2019 10:57:58 -0400 Received: from localhost.localdomain (cpc149474-cmbg20-2-0-cust94.5-4.cable.virginm.net [82.4.196.95]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 474312089E; Sat, 22 Jun 2019 14:57:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1561215478; bh=8GrcL+W1O0TnMyKu7ePiSV4Zne+c0AZUYut8NHcW1O4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wKbfc0P3nbbsCkOzVzqj49L58cThGdG+nfu9E4qdkEtFLK2/hXq3i/JF01AXDYLS3 Wp463N5ctAQisuUXhz42iU6tUXXo/4/rGW27MeACIGug/+IpoLot9R3iypARdutF7Z yQM6dmOsQOChxUxnVgmPmM+HafrkwoEXe0IpLy8g= From: jic23@kernel.org To: linux-iio@vger.kernel.org Cc: Daniel Baluta , Lars-Peter Clausen , Hartmut Knaack , Peter Meerwald-Stadler , Jonathan Cameron Subject: [PATCH 08/14] iio: kfifo-buf: Add SPDX header Date: Sat, 22 Jun 2019 15:55:10 +0100 Message-Id: <20190622145516.3231-9-jic23@kernel.org> X-Mailer: git-send-email 2.22.0 In-Reply-To: <20190622145516.3231-1-jic23@kernel.org> References: <20190622145516.3231-1-jic23@kernel.org> MIME-Version: 1.0 Sender: linux-iio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-iio@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Jonathan Cameron Previously no license header, but there is a MODULE_LICENSE so match that with GPL-2.0+ Header was filled with default GPL-2.0 so update fix that as well. Signed-off-by: Jonathan Cameron --- drivers/iio/buffer/kfifo_buf.c | 1 + include/linux/iio/kfifo_buf.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/iio/buffer/kfifo_buf.c b/drivers/iio/buffer/kfifo_buf.c index 70c302a93d7f..041a8d0b9aac 100644 --- a/drivers/iio/buffer/kfifo_buf.c +++ b/drivers/iio/buffer/kfifo_buf.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ #include #include #include diff --git a/include/linux/iio/kfifo_buf.h b/include/linux/iio/kfifo_buf.h index 764659e01b68..4611bbcc37c3 100644 --- a/include/linux/iio/kfifo_buf.h +++ b/include/linux/iio/kfifo_buf.h @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0+ */ #ifndef __LINUX_IIO_KFIFO_BUF_H__ #define __LINUX_IIO_KFIFO_BUF_H__