From patchwork Wed May 15 03:15:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Packham X-Patchwork-Id: 10944205 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 63F866C5 for ; Wed, 15 May 2019 03:15:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4A475287AA for ; Wed, 15 May 2019 03:15:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3D8B728898; Wed, 15 May 2019 03:15:26 +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 208D6287AA for ; Wed, 15 May 2019 03:15:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726265AbfEODPX (ORCPT ); Tue, 14 May 2019 23:15:23 -0400 Received: from gate2.alliedtelesis.co.nz ([202.36.163.20]:54434 "EHLO gate2.alliedtelesis.co.nz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726218AbfEODPX (ORCPT ); Tue, 14 May 2019 23:15:23 -0400 Received: from mmarshal3.atlnz.lc (mmarshal3.atlnz.lc [10.32.18.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by gate2.alliedtelesis.co.nz (Postfix) with ESMTPS id 746EB83640; Wed, 15 May 2019 15:15:18 +1200 (NZST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=alliedtelesis.co.nz; s=mail181024; t=1557890118; bh=ZlRilQpyHzMvCdRuOmJ1KSODQnzCTTyuQ2gSBErg2sU=; h=From:To:Cc:Subject:Date; b=ayDiQn3jKBXiFRPHo1a7mQQPRNCfYKowYaDh024PiFxjgc/1KvD7DlfNztmSrJ1og JTrb3dsF+lHyGM0xoVYtXM1cul7Ew02OD1zIeHopY+zhv8BHJPbhysT0APT0R+BAKa +l+Td8Q/lwaYZo74E7nSTf2/zHl057lsc1NiFLuqul79ybT36g8wYAS6EAcDgM1qjA fcIw0kaF71Ru5RG62Rf2GetQTa6u+2bI1BVWji7B6LZuZk1lAMptbBJOahBtEenRtC ySzw6z6gsnifENa0JviPMMtbjxx9NhnzxrOgRiEt1zkDKuPh3s2ro8BFRQpezLbMSM G+QO6IOv56A3g== Received: from smtp (Not Verified[10.32.16.33]) by mmarshal3.atlnz.lc with Trustwave SEG (v7,5,8,10121) id ; Wed, 15 May 2019 15:15:16 +1200 Received: from chrisp-dl.ws.atlnz.lc (chrisp-dl.ws.atlnz.lc [10.33.22.30]) by smtp (Postfix) with ESMTP id EDB1B13EC46; Wed, 15 May 2019 15:15:16 +1200 (NZST) Received: by chrisp-dl.ws.atlnz.lc (Postfix, from userid 1030) id 78FE01E1D5B; Wed, 15 May 2019 15:15:16 +1200 (NZST) From: Chris Packham To: jdelvare@suse.com, linux@roeck-us.net Cc: linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org, Chris Packham Subject: [PATCH] hwmon: (tc654) Update to use SPDX-License-Identifier Date: Wed, 15 May 2019 15:15:08 +1200 Message-Id: <20190515031508.30206-1-chris.packham@alliedtelesis.co.nz> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 x-atlnz-ls: pat Sender: linux-hwmon-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-hwmon@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add the SPDX-License-Identifier to the top of the file and remove the old license boilerplate. Signed-off-by: Chris Packham --- Notes: I've gone with GPL-2.0+ because that matches the old text. As the author I don't mind switching to GPL-2.0 if people want that. drivers/hwmon/tc654.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/drivers/hwmon/tc654.c b/drivers/hwmon/tc654.c index 81dd229d7db4..8d0acbf8fbfc 100644 --- a/drivers/hwmon/tc654.c +++ b/drivers/hwmon/tc654.c @@ -1,17 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * tc654.c - Linux kernel modules for fan speed controller * * Copyright (C) 2016 Allied Telesis Labs NZ - * - * 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 in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. */ #include