From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=KXMtQPNw; spf=pass (domain: linaro.org, ip: 209.85.128.67, mailfrom: leif.lindholm@linaro.org) Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by groups.io with SMTP; Thu, 19 Sep 2019 11:06:31 -0700 Received: by mail-wm1-f67.google.com with SMTP id b24so5022701wmj.5 for ; Thu, 19 Sep 2019 11:06:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=SjQnMaLbMANTqIlpcbJWn/r6jYD8lFfJiI4h8nE8jYc=; b=KXMtQPNwMU3cpTiNJRljQUNeW/t3eDixhdi2fBWxyf0rRi6S6I5uVuNBnybzywQEHf BFs7y0Y65LIK47a/9QGcV0Ng41zGrGG+xUATxdAVobyEG/DCUcU/yS0ZJ0t5HWXzeujZ eMPgCvrtE2vvG1Amg15wEaV+ks8D7YNKghH8QuNz2iyq6rU36IbPLbjU/bh4kTU+py8L 7okd/FXBc6FW11b5ADK1UElyW/WqlCqnnXpaMWxaXXD/DfWtqKyicj7qrQMJJfpvIGkj +08u+UMmFeLCCM5jF/qbh5Tdq78hUNI1gXPgIFyaCJYWrcwQSSwF3HLVNsnLMYXnMieK aikg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=SjQnMaLbMANTqIlpcbJWn/r6jYD8lFfJiI4h8nE8jYc=; b=I8RERczqUzLnN6PUCQ2fMoC5MnwBuFEJUZyQWQ3T9hW5C361MtMk4Lv4TpVOOsFtDp wHhH/P6kbAfP7FLWWF28YUepk7Es0+nVTzZkIT4SAvjJeBM9SrYLxd+IG0+OuHiUkTWf 06F6igGpixLjh85p/MSSjvYUIHENBqT0DlacqYAO0NGMrsuF41iPoHfj8TF+8mMKGyXt YdQMoSE3CfJ1plW/seFSrxxI9BMw2L2b3a0Qb3qi21zRyHpLhMrdSggUMy4ozjLKJihR x1fuBQuoYNVFiFfoV9siUTzcNzS8U2GrXuBWltqBOpAZziSbd7b23iYoRSkC8gacMaVd KwFw== X-Gm-Message-State: APjAAAVTFFXQA87sy5u7meROsWifB0HXsd4vL+kpA5863u1b6WKZ8rOw qwfvYc5m5jGcip2hfaag5cYg5+yNhik= X-Google-Smtp-Source: APXvYqzjg5ckc8XP02JxIcvkRMiVGlnwxo+AM91/YNiMC3GmAwFB3g8MHYhJvXfUFbywtN+FH53rDQ== X-Received: by 2002:a05:600c:2308:: with SMTP id 8mr4198753wmo.67.1568916389113; Thu, 19 Sep 2019 11:06:29 -0700 (PDT) Return-Path: Received: from vanye.hemma.eciton.net (cpc92302-cmbg19-2-0-cust304.5-4.cable.virginm.net. [82.1.209.49]) by smtp.gmail.com with ESMTPSA id d9sm16389769wrc.44.2019.09.19.11.06.28 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 19 Sep 2019 11:06:28 -0700 (PDT) From: "Leif Lindholm" To: devel@edk2.groups.io Cc: Ard Biesheuvel Subject: [PATCH 2/7] ArmPlatformPkg: strip trailing whitespace Date: Thu, 19 Sep 2019 19:06:20 +0100 Message-Id: <20190919180625.29150-3-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190919180625.29150-1-leif.lindholm@linaro.org> References: <20190919180625.29150-1-leif.lindholm@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Ard Biesheuvel Signed-off-by: Leif Lindholm --- ArmPlatformPkg/Scripts/Ds5/profile.py | 2 +- ArmPlatformPkg/Scripts/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ArmPlatformPkg/Scripts/Ds5/profile.py b/ArmPlatformPkg/Scripts/Ds5/profile.py index 8f74cf2a8bdf..f87dee24695c 100644 --- a/ArmPlatformPkg/Scripts/Ds5/profile.py +++ b/ArmPlatformPkg/Scripts/Ds5/profile.py @@ -321,7 +321,7 @@ for (key,value) in sorted_functions_cycles[:20]: else: break; print "----" -for (key,value) in sorted_all_functions_cycles[:20]: +for (key,value) in sorted_all_functions_cycles[:20]: if value[0] != 0: print "%s (cycles: %d - %d%%, count: %d)" % (key, value[0], (value[0] * 100) / total_cycles, value[1]) else: diff --git a/ArmPlatformPkg/Scripts/Makefile b/ArmPlatformPkg/Scripts/Makefile index 09f1c9092328..da949dc1ed56 100644 --- a/ArmPlatformPkg/Scripts/Makefile +++ b/ArmPlatformPkg/Scripts/Makefile @@ -1,6 +1,6 @@ #/* @file # Copyright (c) 2011-2015, ARM Limited. All rights reserved. -# +# # SPDX-License-Identifier: BSD-2-Clause-Patent # #*/ -- 2.20.1