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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable 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 E592DC3A5A5 for ; Thu, 5 Sep 2019 11:01:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B97BD2173B for ; Thu, 5 Sep 2019 11:01:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1567681300; bh=mJJv7bKaAYOsFT1lvu/Ibyo80Mbk4EazeWj8qD3RaDw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=wC5cWNcLcjq/CQsrdcDguC2ByLBXTmytf8SPP1cO0unOpQ1Ias+ixgRoSC8Vbc8nU EByk5UobFyNvip2uq3+ea0B9t53sZMDxoC496XxUPNNKYMta9OBdBU2qdaKcxsZ8gJ m9XqsdSqc7RhfrTEtFfEBjjJphx0C27u/fwUxq4w= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2388070AbfIELBe (ORCPT ); Thu, 5 Sep 2019 07:01:34 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:48338 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731928AbfIELBe (ORCPT ); Thu, 5 Sep 2019 07:01:34 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=btp8OApGG/3UFKYYTxwfb9hcf8w0H2Q+kH4+OloUAmQ=; b=H4AC6QROK9gZD7qqfPt1CtNbki vM/KrHR5a1dm7r1QFR9/MQAwj5yh09N+8A8sHcbiX+XjSwAtdT6wXJytkwdLetzLleQ7ndgD8gEuE 7iU70EgH+OES4UfasNZYXgMfNKe2BFz+x10Ev6p+gG0aBGOmVL+PHODqcbMgIyPIF0x1GP6v+MtP0 d112pnrU7WXlgFdaRgfJ+4PxUVa6llwdOVKL2qTaQmQ0k2z/YdcJgAUWP7/4xkwF4KLA2WfUX7LyF ODEuYJuQi4iPKlXCbFKZHlOZHRwHVCVRhigviN5iHNjUMQcszOgP3VWGlvJUQURFgRcDvtTkHqzS6 z+meT36A==; Received: from 177.17.137.173.dynamic.adsl.gvt.net.br ([177.17.137.173] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.92 #3 (Red Hat Linux)) id 1i5pW8-0003aa-Rv; Thu, 05 Sep 2019 11:01:32 +0000 Received: from mchehab by bombadil.infradead.org with local (Exim 4.92.1) (envelope-from ) id 1i5pW6-000310-KU; Thu, 05 Sep 2019 08:01:30 -0300 From: Mauro Carvalho Chehab To: Linux Media Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , Greg Kroah-Hartman , Joe Perches , linux-kernel@vger.kernel.org, Jonathan Corbet , Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Thomas Gleixner , Allison Randal , Armijn Hemel Subject: [PATCH 2/3] tools: perf: fix SPDX header in the light of PEP-263 Date: Thu, 5 Sep 2019 08:01:28 -0300 Message-Id: <7df6e8b3afa04c350a795a366ac9d6fbb7f31980.1567681249.git.mchehab+samsung@kernel.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org As stated at PEP-263, the coding tag should be at the first or second line. On those two scripts, the tag is at the wrong line. It also contains a separate e-macs line to tell it to consider the file as a python one. Merge this with the encoding tag, using the same coding line that we're using on other python files. Signed-off-by: Mauro Carvalho Chehab --- tools/perf/python/tracepoint.py | 3 +-- tools/perf/python/twatch.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/perf/python/tracepoint.py b/tools/perf/python/tracepoint.py index eb76f6516247..b7717b501fd8 100755 --- a/tools/perf/python/tracepoint.py +++ b/tools/perf/python/tracepoint.py @@ -1,7 +1,6 @@ #! /usr/bin/python +# -*- coding: utf-8; mode: python -*- # SPDX-License-Identifier: GPL-2.0 -# -*- python -*- -# -*- coding: utf-8 -*- import perf diff --git a/tools/perf/python/twatch.py b/tools/perf/python/twatch.py index ff87ccf5b708..a95e59373ebd 100755 --- a/tools/perf/python/twatch.py +++ b/tools/perf/python/twatch.py @@ -1,7 +1,6 @@ #! /usr/bin/python +# -*- coding: utf-8; mode: python -*- # SPDX-License-Identifier: GPL-2.0-only -# -*- python -*- -# -*- coding: utf-8 -*- # twatch - Experimental use of the perf python interface # Copyright (C) 2011 Arnaldo Carvalho de Melo # -- 2.21.0