From nobody Thu Apr 2 13:09:06 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2A0CDC04A95 for ; Sun, 25 Sep 2022 14:45:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231390AbiIYOpC (ORCPT ); Sun, 25 Sep 2022 10:45:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45142 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232178AbiIYOov (ORCPT ); Sun, 25 Sep 2022 10:44:51 -0400 Received: from smtp.smtpout.orange.fr (smtp08.smtpout.orange.fr [80.12.242.130]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CD3FA101F1 for ; Sun, 25 Sep 2022 07:44:48 -0700 (PDT) Received: from pop-os.home ([86.243.100.34]) by smtp.orange.fr with ESMTPA id cSs8ofLdYr5PdcSs8o6610; Sun, 25 Sep 2022 16:44:46 +0200 X-ME-Helo: pop-os.home X-ME-Auth: Y2hyaXN0b3BoZS5qYWlsbGV0QHdhbmFkb28uZnI= X-ME-Date: Sun, 25 Sep 2022 16:44:46 +0200 X-ME-IP: 86.243.100.34 From: Christophe JAILLET To: Peter Zijlstra , Ingo Molnar , Will Deacon , Waiman Long , Boqun Feng , Davidlohr Bueso Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Christophe JAILLET , Peter Zijlstra , Ingo Molnar Subject: [PATCH] locking/lock_events: Fix license version Date: Sun, 25 Sep 2022 16:44:38 +0200 Message-Id: <751d50ff1c3b30d26ba2ed4a552800906a0aca06.1664117067.git.christophe.jaillet@wanadoo.fr> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" SPDX-License-Identifier is GPL-2.0, but the license text states "either version 2 of the License, or (at your option) any later version." So update the SPDX-License-Identifier to GPL-2.0-or-later. Remove the license text as well. It is useless now. Fixes: ad53fa10fa9e ("locking/qspinlock_stat: Introduce generic lockevent_*= () counting APIs") Signed-off-by: Christophe JAILLET --- kernel/locking/lock_events.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/kernel/locking/lock_events.h b/kernel/locking/lock_events.h index 8c7e7d25f09c..ba17c5be3c2b 100644 --- a/kernel/locking/lock_events.h +++ b/kernel/locking/lock_events.h @@ -1,15 +1,5 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +/* SPDX-License-Identifier: GPL-2.0-or-later */ /* - * 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. - * * Authors: Waiman Long */ =20 --=20 2.34.1