From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S941373AbcJXTKp (ORCPT ); Mon, 24 Oct 2016 15:10:45 -0400 Received: from terminus.zytor.com ([198.137.202.10]:47280 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935323AbcJXTJH (ORCPT ); Mon, 24 Oct 2016 15:09:07 -0400 Date: Mon, 24 Oct 2016 12:08:29 -0700 From: tip-bot for Mathieu Poirier Message-ID: Cc: hpa@zytor.com, linux-kernel@vger.kernel.org, acme@redhat.com, mingo@kernel.org, tglx@linutronix.de, mathieu.poirier@linaro.org, peterz@infradead.org Reply-To: hpa@zytor.com, linux-kernel@vger.kernel.org, acme@redhat.com, mingo@kernel.org, tglx@linutronix.de, peterz@infradead.org, mathieu.poirier@linaro.org In-Reply-To: <1476913323-6836-1-git-send-email-mathieu.poirier@linaro.org> References: <1476913323-6836-1-git-send-email-mathieu.poirier@linaro.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf coresight: Removing miscellaneous debug output Git-Commit-ID: 04b553ad7dc347eabd3cb4705932272453175a80 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 04b553ad7dc347eabd3cb4705932272453175a80 Gitweb: http://git.kernel.org/tip/04b553ad7dc347eabd3cb4705932272453175a80 Author: Mathieu Poirier AuthorDate: Wed, 19 Oct 2016 15:42:03 -0600 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 24 Oct 2016 11:07:47 -0300 perf coresight: Removing miscellaneous debug output Printing the full path of the selected link is obviously not needed, hence removing. Signed-off-by: Mathieu Poirier Cc: Peter Zijlstra Cc: linux-arm-kernel@lists.infradead.org Link: http://lkml.kernel.org/r/1476913323-6836-1-git-send-email-mathieu.poirier@linaro.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/arch/arm/util/cs-etm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/perf/arch/arm/util/cs-etm.c b/tools/perf/arch/arm/util/cs-etm.c index 47d584d..dfea6b6 100644 --- a/tools/perf/arch/arm/util/cs-etm.c +++ b/tools/perf/arch/arm/util/cs-etm.c @@ -575,8 +575,6 @@ static FILE *cs_device__open_file(const char *name) snprintf(path, PATH_MAX, "%s" CS_BUS_DEVICE_PATH "%s", sysfs, name); - printf("path: %s\n", path); - if (stat(path, &st) < 0) return NULL;