From patchwork Fri Dec 25 10:48:54 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 10128 X-Patchwork-Delegate: vapier@gentoo.org Received: (qmail 117934 invoked by alias); 25 Dec 2015 10:49:00 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 117916 invoked by uid 89); 25 Dec 2015 10:48:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=permenant, 488, 6, 4886, 4176 X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 25 Dec 2015 10:48:58 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id E3E7C340756 for ; Fri, 25 Dec 2015 10:48:55 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: hw-properties: delete trace calls [committed] Date: Fri, 25 Dec 2015 05:48:54 -0500 Message-Id: <1451040534-6304-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes These trace calls don't seem to add anything useful and break the cris hw tests, so punt them. They were disabled before commit 6d519a4606b9 but were re-enabled as part of TRACE macro cleanups. --- sim/common/ChangeLog | 8 ++++++++ sim/common/hw-properties.c | 4 ---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index e6ac042..3e6e3d9 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,13 @@ 2015-12-25 Mike Frysinger + * hw-properties.c (hw_find_ihandle_runtime_property): Delete + HW_TRACE call. + (hw_find_integer_property): Likewise. + (hw_find_integer_array_property): Likewise. + (hw_add_duplicate_property): Likewise. + +2015-12-25 Mike Frysinger + * sim-config.h (WITH_ENGINE): Delete. * sim-module.c (modules): Always include sim_engine_install. diff --git a/sim/common/hw-properties.c b/sim/common/hw-properties.c index d66873c..0aaebbd 100644 --- a/sim/common/hw-properties.c +++ b/sim/common/hw-properties.c @@ -417,7 +417,6 @@ hw_find_ihandle_runtime_property (struct hw *me, ihandle_runtime_property_spec *ihandle) { struct hw_property_data *entry = find_property_data (me, property); - HW_TRACE ((me, "hw_find_ihandle_runtime_property(property=%s)\n", property)); if (entry == NULL) hw_abort (me, "property \"%s\" not found", property); if (entry->property->type != ihandle_property @@ -489,7 +488,6 @@ hw_find_integer_property (struct hw *me, { const struct hw_property *node; signed_cell integer; - HW_TRACE ((me, "hw_find_integer(property=%s)\n", property)); node = hw_find_property (me, property); if (node == NULL) hw_abort (me, "property \"%s\" not found", property); @@ -509,7 +507,6 @@ hw_find_integer_array_property (struct hw *me, const struct hw_property *node; int sizeof_integer = sizeof (*integer); signed_cell *cell; - HW_TRACE ((me, "hw_find_integer(property=%s)\n", property)); /* check things sane */ node = hw_find_property (me, property); @@ -879,7 +876,6 @@ hw_add_duplicate_property (struct hw *me, const struct hw_property *original) { struct hw_property_data *master; - HW_TRACE ((me, "hw_add_duplicate_property(property=%s, ...)\n", property)); if (original->disposition != permenant_object) hw_abort (me, "Can only duplicate permenant objects"); /* find the original's master */